sqlite: Update from 3.11.0 to 3.11.1
[termux-packages] / packages / bash / build.sh
CommitLineData
59f0d218
FF
1TERMUX_PKG_HOMEPAGE=http://www.gnu.org/software/bash/
2TERMUX_PKG_DESCRIPTION="A sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh)"
3cc4ef71 3TERMUX_PKG_DEPENDS="ncurses, readline, libandroid-support, termux-tools, command-not-found"
59f0d218 4_MAIN_VERSION=4.3
aa559555 5_PATCH_VERSION=42
59f0d218 6TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION}
f0d4e380 7TERMUX_PKG_BUILD_REVISION=6
59f0d218
FF
8TERMUX_PKG_SRCURL=http://ftp.gnu.org/gnu/bash/bash-${_MAIN_VERSION}.tar.gz
9TERMUX_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"
f0d4e380
FF
10TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_job_control_missing=present"
11TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_sys_siglist=yes"
12TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_func_sigsetjmp=present"
13TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_unusable_rtsigs=no"
59f0d218
FF
14
15TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1/bashbug.1 bin/bashbug"
16
17termux_step_pre_configure () {
18 cd $TERMUX_PKG_SRCDIR
19 for patch_number in `seq -f '%03g' ${_PATCH_VERSION}`; do
20 PATCHFILE=$TERMUX_PKG_CACHEDIR/bash_patch_${patch_number}.patch
21 test ! -f $PATCHFILE && curl "http://ftp.gnu.org/gnu/bash/bash-4.3-patches/bash43-$patch_number" > $PATCHFILE
22 patch -p0 -i $PATCHFILE
23 done
24}
5b8bb72c
FF
25
26termux_step_post_make_install () {
27 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-profile > $TERMUX_PREFIX/etc/profile
3cc4ef71
FF
28 # /etc/bash.bashrc - System-wide .bashrc file for interactive shells. (config-top.h in bash source, patched to enable):
29 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-bash.bashrc > $TERMUX_PREFIX/etc/bash.bashrc
5b8bb72c 30}