libsoup: Update from 2.62.0 to 2.62.1
[termux-packages] / packages / dialog / build.sh
CommitLineData
59f0d218 1TERMUX_PKG_HOMEPAGE=http://invisible-island.net/dialog/
de357946 2TERMUX_PKG_DESCRIPTION="Application used in shell scripts which displays text user interface widgets"
59f0d218 3TERMUX_PKG_DEPENDS="ncurses"
d2f50665 4TERMUX_PKG_VERSION="1.3-20171209"
d545ecfe 5TERMUX_PKG_SHA256=20139442119e2eff5c35236e8e5e313c901539008d9cccf8c8ab3851b41267e6
59f0d218
FF
6TERMUX_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)
59f0d218
FF
8TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-ncursesw --enable-widec --with-pkg-config"
9
10termux_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
15termux_step_post_make_install () {
16 rm $TERMUX_PREFIX/lib/libtinfo.so
d308429e
FF
17 cd $TERMUX_PREFIX/bin
18 ln -f -s dialog whiptail
59f0d218 19}