2016-11-11 01:39:54 +01:00
TERMUX_PKG_HOMEPAGE = https://www.nano-editor.org/
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DESCRIPTION = "Small, free and friendly text editor"
2018-06-04 00:48:11 +02:00
TERMUX_PKG_VERSION = 2.9.8
2018-06-19 18:04:44 +02:00
TERMUX_PKG_REVISION = 1
2018-06-04 00:48:11 +02:00
TERMUX_PKG_SHA256 = 07192c320b74c1fb78437021e9affa6a9d55b806ee012de601902392eaa03601
2017-08-28 12:06:12 +02:00
TERMUX_PKG_SRCURL = https://www.nano-editor.org/dist/v${ TERMUX_PKG_VERSION : 0 : 3 } /nano-${ TERMUX_PKG_VERSION } .tar.gz
2016-09-23 04:37:42 +02:00
TERMUX_PKG_DEPENDS = "libandroid-support, libandroid-glob, ncurses"
2017-04-02 12:38:29 +02:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS = "
2018-01-05 22:57:31 +01:00
ac_cv_header_pwd_h = no
2017-04-02 12:38:29 +02:00
--disable-libmagic
--enable-utf8
--with-wordbounds
"
2015-06-13 01:03:31 +02:00
TERMUX_PKG_RM_AFTER_INSTALL = "bin/rnano share/man/man1/rnano.1 share/nano/man-html"
2016-09-03 23:48:41 +02:00
termux_step_pre_configure( ) {
LDFLAGS += " -landroid-glob"
2018-06-13 02:12:36 +02:00
if [ " $TERMUX_DEBUG " = = "true" ] ; then
# When doing debug build, -D_FORTIFY_SOURCE=2 gives this error:
# /home/builder/.termux-build/_lib/16-aarch64-21-v3/bin/../sysroot/usr/include/bits/fortify/string.h:79:26: error: use of undeclared identifier '__USE_FORTIFY_LEVEL'
export CFLAGS = ${ CFLAGS /-D_FORTIFY_SOURCE=2/ }
fi
2016-09-03 23:48:41 +02:00
}
2015-06-13 01:03:31 +02:00
termux_step_post_make_install ( ) {
# Configure nano to use syntax highlighting:
NANORC = $TERMUX_PREFIX /etc/nanorc
echo include \" $TERMUX_PREFIX /share/nano/\* nanorc\" > $NANORC
}