s/TERMUX_PKG_BUILD_REVISION/TERMUX_PKG_REVISION/
[termux-packages] / packages / bash / build.sh
CommitLineData
4643d4be 1TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/bash/
59f0d218 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"
83d11d6e 4_MAIN_VERSION=4.4
39d45704 5_PATCH_VERSION=5
af4dc416 6TERMUX_PKG_REVISION=2
59f0d218 7TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION}
722ed12d 8TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/bash/bash-${_MAIN_VERSION}.tar.gz
83d11d6e 9TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-multibyte --without-bash-malloc --with-installed-readline ac_cv_header_grp_h=no ac_cv_rl_version=7.0"
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"
ab41f5b4
FF
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.
16TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_dev_fd=whacky"
4643d4be
FF
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
22TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_getcwd_malloc=yes"
59f0d218
FF
23
24TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1/bashbug.1 bin/bashbug"
25
26termux_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
722ed12d 30 test ! -f $PATCHFILE && curl "https://mirrors.kernel.org/gnu/bash/bash-4.4-patches/bash44-$patch_number" > $PATCHFILE
59f0d218
FF
31 patch -p0 -i $PATCHFILE
32 done
33}
5b8bb72c
FF
34
35termux_step_post_make_install () {
36 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-profile > $TERMUX_PREFIX/etc/profile
f4eefdf9
FF
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
3cc4ef71 41 # /etc/bash.bashrc - System-wide .bashrc file for interactive shells. (config-top.h in bash source, patched to enable):
f4eefdf9
FF
42 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" \
43 $TERMUX_PKG_BUILDER_DIR/etc-bash.bashrc > \
44 $TERMUX_PREFIX/etc/bash.bashrc
5b8bb72c 45}