postgresql: Update from 9.6.2 to 9.6.3
[termux-packages] / packages / mc / build.sh
1 TERMUX_PKG_HOMEPAGE=https://www.midnight-commander.org/
2 TERMUX_PKG_DESCRIPTION="Midnight Commander - a powerful file manager"
3 TERMUX_PKG_VERSION=4.8.19
4 TERMUX_PKG_SRCURL="http://ftp.midnight-commander.org/mc-${TERMUX_PKG_VERSION}.tar.xz"
5 TERMUX_PKG_SHA256=eb9e56bbb5b2893601d100d0e0293983049b302c5ab61bfb544ad0ee2cc1f2df
6 TERMUX_PKG_DEPENDS="libandroid-support, ncurses, glib"
7 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-ncurses-libs=$TERMUX_PREFIX/lib --with-screen=ncurses"
8
9 termux_step_pre_configure() {
10 # mc uses the deprecated S_IWRITE definition, which android does not define:
11 # https://code.google.com/p/android/issues/detail?id=19710
12 CPPFLAGS+=" -DS_IWRITE=S_IWUSR"
13 }