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"
|
2016-09-23 04:37:42 +02:00
|
|
|
_MAJOR_VERSION=2.7
|
2016-11-11 01:39:54 +01:00
|
|
|
TERMUX_PKG_VERSION=${_MAJOR_VERSION}.1
|
|
|
|
TERMUX_PKG_SRCURL=https://www.nano-editor.org/dist/v${_MAJOR_VERSION}/nano-${TERMUX_PKG_VERSION}.tar.gz
|
2016-09-23 04:37:42 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libandroid-support, libandroid-glob, ncurses"
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-utf8 --disable-libmagic"
|
|
|
|
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"
|
|
|
|
}
|
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
|
|
|
|
}
|