Bump dialog version to 20170509 (#1009)
[termux-packages] / packages / dialog / build.sh
1 TERMUX_PKG_DESCRIPTION="Application used in shell scripts which displays text user interface widgets"
2 TERMUX_PKG_HOMEPAGE=http://invisible-island.net/dialog/
3 TERMUX_PKG_DEPENDS="ncurses"
4 TERMUX_PKG_VERSION="1.3-20170509"
5 TERMUX_PKG_SHA256=2ff1ba74c632b9d13a0d0d2c942295dd4e8909694eeeded7908a467d0bcd4756
6 TERMUX_PKG_SRCURL=http://invisible-island.net/datafiles/release/dialog.tar.gz
7 # This will break when a new version is released (the URL unfortunately does not change)
8 TERMUX_PKG_FOLDERNAME="dialog-$TERMUX_PKG_VERSION"
9 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-ncursesw --enable-widec --with-pkg-config"
10
11 termux_step_pre_configure () {
12 # Put a temporary link for libtinfo.so
13 ln -s -f $TERMUX_PREFIX/lib/libncursesw.so $TERMUX_PREFIX/lib/libtinfo.so
14 }
15
16 termux_step_post_make_install () {
17 rm $TERMUX_PREFIX/lib/libtinfo.so
18 cd $TERMUX_PREFIX/bin
19 ln -f -s dialog whiptail
20 }