dash: Switch download url
[termux-packages] / packages / fish / build.sh
1 TERMUX_PKG_HOMEPAGE=http://fishshell.com/
2 TERMUX_PKG_DESCRIPTION="Shell geared towards interactive use"
3 _COMMIT=c76d86631717929b3a2f259615e8603e69e13256
4 TERMUX_PKG_VERSION=2.2.201605030720
5 TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/archive/${_COMMIT}.zip
6 # fish calls 'tput' from ncurses-utils, at least when cancelling (Ctrl+C) a command line:
7 TERMUX_PKG_DEPENDS="ncurses, libgnustl, libandroid-support, ncurses-utils"
8 TERMUX_PKG_BUILD_IN_SRC=yes
9 TERMUX_PKG_FOLDERNAME=fish-shell-$_COMMIT
10
11 termux_step_pre_configure () {
12 cd $TERMUX_PKG_SRCDIR
13 autoconf
14
15 CXXFLAGS+=" $CPPFLAGS"
16
17 LDFLAGS+=" -lgnustl_shared"
18
19 export PCRE2_CONFIG_EXTRAS="--host=$TERMUX_HOST_PLATFORM"
20 }