13 lines
592 B
Bash
Raw Normal View History

2016-05-21 17:19:42 -04:00
TERMUX_PKG_VERSION=4.8.17
2015-06-13 01:03:31 +02:00
TERMUX_PKG_HOMEPAGE=https://www.midnight-commander.org/
2015-07-04 08:56:17 -04:00
TERMUX_PKG_DESCRIPTION="Midnight Commander - a powerful file manager"
2015-06-13 01:03:31 +02:00
TERMUX_PKG_SRCURL="http://ftp.midnight-commander.org/mc-${TERMUX_PKG_VERSION}.tar.xz"
2016-03-14 22:15:40 -04:00
TERMUX_PKG_DEPENDS="libandroid-support, ncurses, glib"
2015-06-13 01:03:31 +02:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-ncurses-libs=$TERMUX_PREFIX/lib --with-screen=ncurses"
2016-09-03 18:15:47 -04:00
termux_step_pre_configure() {
# mc uses the deprecated S_IWRITE definition, which android does not define:
# https://code.google.com/p/android/issues/detail?id=19710
CPPFLAGS+=" -DS_IWRITE=S_IWUSR"
}