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-09-19 07:44:29 +02:00
TERMUX_PKG_VERSION = 3.1
TERMUX_PKG_SHA256 = 14c02ca40a5bc61c580ce2f9cb7f9fc72d5ccc9da17ad044f78f6fb3fdb7719e
2018-09-11 00:45:49 +02:00
TERMUX_PKG_SRCURL = https://nano-editor.org/dist/latest/nano-$TERMUX_PKG_VERSION .tar.xz
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
}