Build bash&openssh with the NDK r12 beta on i686
[termux-packages] / packages / bash / build.sh
CommitLineData
59f0d218
FF
1TERMUX_PKG_HOMEPAGE=http://www.gnu.org/software/bash/
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"
59f0d218 4_MAIN_VERSION=4.3
aa559555 5_PATCH_VERSION=42
59f0d218 6TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION}
24cdd7d1 7TERMUX_PKG_BUILD_REVISION=8
59f0d218
FF
8TERMUX_PKG_SRCURL=http://ftp.gnu.org/gnu/bash/bash-${_MAIN_VERSION}.tar.gz
9TERMUX_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"
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"
59f0d218
FF
17
18TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1/bashbug.1 bin/bashbug"
19
20termux_step_pre_configure () {
21 cd $TERMUX_PKG_SRCDIR
22 for patch_number in `seq -f '%03g' ${_PATCH_VERSION}`; do
23 PATCHFILE=$TERMUX_PKG_CACHEDIR/bash_patch_${patch_number}.patch
24 test ! -f $PATCHFILE && curl "http://ftp.gnu.org/gnu/bash/bash-4.3-patches/bash43-$patch_number" > $PATCHFILE
25 patch -p0 -i $PATCHFILE
26 done
27}
5b8bb72c
FF
28
29termux_step_post_make_install () {
30 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-profile > $TERMUX_PREFIX/etc/profile
3cc4ef71
FF
31 # /etc/bash.bashrc - System-wide .bashrc file for interactive shells. (config-top.h in bash source, patched to enable):
32 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-bash.bashrc > $TERMUX_PREFIX/etc/bash.bashrc
5b8bb72c 33}