X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/59f0d218a6ff34c80cf898f6d7ac62555ba8eb11..af54291f5457f0bc9ab0875ef4311c6269787ec4:/packages/bash/build.sh diff --git a/packages/bash/build.sh b/packages/bash/build.sh index 90c504dd..672d3115 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" _MAIN_VERSION=4.3 _PATCH_VERSION=39 TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION} +TERMUX_PKG_BUILD_REVISION=2 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" @@ -17,3 +18,7 @@ termux_step_pre_configure () { patch -p0 -i $PATCHFILE done } + +termux_step_post_make_install () { + sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-profile > $TERMUX_PREFIX/etc/profile +}