X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/5b8bb72c57895aae90de0b4231a2a7c379422f0e..b428c1fca506c1b516cb3c8abc8ab80c456336d7:/packages/bash/build.sh?ds=sidebyside diff --git a/packages/bash/build.sh b/packages/bash/build.sh index 52fbb3a0..34f0a809 100755 --- a/packages/bash/build.sh +++ b/packages/bash/build.sh @@ -1,9 +1,10 @@ TERMUX_PKG_HOMEPAGE=http://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_PKG_DEPENDS="ncurses, readline, libandroid-support, termux-tools, command-not-found" _MAIN_VERSION=4.3 _PATCH_VERSION=39 TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION} +TERMUX_PKG_BUILD_REVISION=5 TERMUX_PKG_SRCURL=http://ftp.gnu.org/gnu/bash/bash-${_MAIN_VERSION}.tar.gz 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" @@ -20,4 +21,6 @@ termux_step_pre_configure () { termux_step_post_make_install () { sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-profile > $TERMUX_PREFIX/etc/profile + # /etc/bash.bashrc - System-wide .bashrc file for interactive shells. (config-top.h in bash source, patched to enable): + sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-bash.bashrc > $TERMUX_PREFIX/etc/bash.bashrc }