blob: af87dd3f1697b3e17e0da296d0d267e7fc21d79c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include ${TOPDIR}/rules.mk
PKG_NAME:= nano
PKG_VERSION:= 2.2.4
PKG_RELEASE:= 1
PKG_MD5SUM:= 6304308afb1f7ef4a5e93eb99206632a
PKG_DESCR:= An enhanced clone of the Pico editor
PKG_SECTION:= editor
PKG_DEPENDS:= libncurses
PKG_BUILDDEP:= ncurses
PKG_URL:= http://www.nano-editor.org/
PKG_SITES:= http://www.nano-editor.org/dist/v2.2/
PKG_FLAVOURS_NANO:= TINY
PKGFD_TINY:= tiny nano
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,NANO,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
CONFIGURE_ENV+= ac_cv_header_regex_h=no
CONFIGURE_ARGS+= --enable-nanorc \
--disable-glibtest \
--disable-utf8 \
--disable-color \
--without-slang
ifeq (${ADK_PACKAGE_NANO_TINY},y)
CONFIGURE_ARGS+= --enable-tiny
else
CONFIGURE_ARGS+= --disable-browser \
--disable-help \
--disable-mouse \
--disable-nls \
--disable-speller \
--disable-operatingdir \
--enable-multibuffer
endif
post-install:
${INSTALL_DIR} ${IDIR_NANO}/usr/bin
${INSTALL_BIN} ${WRKINST}/usr/bin/nano ${IDIR_NANO}/usr/bin/
${INSTALL_DIR} ${IDIR_NANO}/etc
$(INSTALL_DATA) ./files/nanorc ${IDIR_NANO}/etc/
include ${TOPDIR}/mk/pkg-bottom.mk
|