s/TERMUX_PKG_BUILD_REVISION/TERMUX_PKG_REVISION/
[termux-packages] / packages / bash / build.sh
1 TERMUX_PKG_HOMEPAGE=https://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, termux-tools, command-not-found"
4 _MAIN_VERSION=4.4
5 _PATCH_VERSION=5
6 TERMUX_PKG_REVISION=2
7 TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION}
8 TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/bash/bash-${_MAIN_VERSION}.tar.gz
9 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"
10 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_job_control_missing=present"
11 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_sys_siglist=yes"
12 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_func_sigsetjmp=present"
13 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_unusable_rtsigs=no"
14 # Use bash_cv_dev_fd=whacky to use /proc/self/fd instead of /dev/fd.
15 # After making this change process substitution such as in 'cat <(ls)' works.
16 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_dev_fd=whacky"
17 # Bash assumes that getcwd is broken and provides a wrapper which
18 # does not work when not all parent directories up to root are
19 # accessible, which they are no under Android (/data). See
20 # - http://permalink.gmane.org/gmane.linux.embedded.yocto.general/25204
21 # - https://github.com/termux/termux-app/issues/200
22 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_getcwd_malloc=yes"
23
24 TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1/bashbug.1 bin/bashbug"
25
26 termux_step_pre_configure () {
27 cd $TERMUX_PKG_SRCDIR
28 for patch_number in `seq -f '%03g' ${_PATCH_VERSION}`; do
29 PATCHFILE=$TERMUX_PKG_CACHEDIR/bash_patch_${patch_number}.patch
30 test ! -f $PATCHFILE && curl "https://mirrors.kernel.org/gnu/bash/bash-4.4-patches/bash44-$patch_number" > $PATCHFILE
31 patch -p0 -i $PATCHFILE
32 done
33 }
34
35 termux_step_post_make_install () {
36 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-profile > $TERMUX_PREFIX/etc/profile
37 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" \
38 $TERMUX_PKG_BUILDER_DIR/etc-profile | \
39 sed "s|@TERMUX_HOME@|$TERMUX_ANDROID_HOME|" > \
40 $TERMUX_PREFIX/etc/profile
41 # /etc/bash.bashrc - System-wide .bashrc file for interactive shells. (config-top.h in bash source, patched to enable):
42 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" \
43 $TERMUX_PKG_BUILDER_DIR/etc-bash.bashrc > \
44 $TERMUX_PREFIX/etc/bash.bashrc
45 }