Initial push
[termux-packages] / packages / bash / build.sh
1 TERMUX_PKG_HOMEPAGE=http://www.gnu.org/software/bash/
2 TERMUX_PKG_DESCRIPTION="A sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh)"
3 TERMUX_PKG_DEPENDS="ncurses, readline, libandroid-support"
4 _MAIN_VERSION=4.3
5 _PATCH_VERSION=39
6 TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION}
7 TERMUX_PKG_SRCURL=http://ftp.gnu.org/gnu/bash/bash-${_MAIN_VERSION}.tar.gz
8 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-multibyte --without-bash-malloc --with-installed-readline ac_cv_header_grp_h=no ac_cv_header_pwd_h=no ac_cv_rl_version=6.3"
9
10 TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1/bashbug.1 bin/bashbug"
11
12 termux_step_pre_configure () {
13 cd $TERMUX_PKG_SRCDIR
14 for patch_number in `seq -f '%03g' ${_PATCH_VERSION}`; do
15 PATCHFILE=$TERMUX_PKG_CACHEDIR/bash_patch_${patch_number}.patch
16 test ! -f $PATCHFILE && curl "http://ftp.gnu.org/gnu/bash/bash-4.3-patches/bash43-$patch_number" > $PATCHFILE
17 patch -p0 -i $PATCHFILE
18 done
19 }