vim: Update from 8.0.1650 to 8.0.1700
[termux-packages] / packages / dialog / build.sh
1 TERMUX_PKG_HOMEPAGE=http://invisible-island.net/dialog/
2 TERMUX_PKG_DESCRIPTION="Application used in shell scripts which displays text user interface widgets"
3 TERMUX_PKG_DEPENDS="ncurses"
4 TERMUX_PKG_VERSION="1.3-20171209"
5 TERMUX_PKG_SHA256=20139442119e2eff5c35236e8e5e313c901539008d9cccf8c8ab3851b41267e6
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_EXTRA_CONFIGURE_ARGS="--with-ncursesw --enable-widec --with-pkg-config"
9
10 termux_step_pre_configure () {
11 # Put a temporary link for libtinfo.so
12 ln -s -f $TERMUX_PREFIX/lib/libncursesw.so $TERMUX_PREFIX/lib/libtinfo.so
13 }
14
15 termux_step_post_make_install () {
16 rm $TERMUX_PREFIX/lib/libtinfo.so
17 cd $TERMUX_PREFIX/bin
18 ln -f -s dialog whiptail
19 }