X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/f4eefdf906c8cbc92b4db449411e1fa7db53b306..4d7154eff8629b5790527fb6f6df328d746b40c9:/packages/bash/build.sh diff --git a/packages/bash/build.sh b/packages/bash/build.sh index dcf78abf..2e133177 100755 --- a/packages/bash/build.sh +++ b/packages/bash/build.sh @@ -2,10 +2,10 @@ TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/bash/ TERMUX_PKG_DESCRIPTION="A sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh)" TERMUX_PKG_DEPENDS="ncurses, readline, libandroid-support, termux-tools, command-not-found" _MAIN_VERSION=4.4 -_PATCH_VERSION=5 -TERMUX_PKG_BUILD_REVISION=2 +_PATCH_VERSION=12 TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION} TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/bash/bash-${_MAIN_VERSION}.tar.gz +TERMUX_PKG_SHA256=d86b3392c1202e8ff5a423b302e6284db7f8f435ea9f39b5b1b20fd3ac36dfcb TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-multibyte --without-bash-malloc --with-installed-readline ac_cv_header_grp_h=no ac_cv_rl_version=7.0" TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_job_control_missing=present" TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_sys_siglist=yes" @@ -27,7 +27,9 @@ termux_step_pre_configure () { cd $TERMUX_PKG_SRCDIR for patch_number in `seq -f '%03g' ${_PATCH_VERSION}`; do PATCHFILE=$TERMUX_PKG_CACHEDIR/bash_patch_${patch_number}.patch - test ! -f $PATCHFILE && curl "https://mirrors.kernel.org/gnu/bash/bash-4.4-patches/bash44-$patch_number" > $PATCHFILE + test ! -f $PATCHFILE && termux_download \ + "https://mirrors.kernel.org/gnu/bash/bash-4.4-patches/bash44-$patch_number" \ + $PATCHFILE patch -p0 -i $PATCHFILE done }