Merge pull request #238 from vaites/php
[termux-packages] / packages / busybox / build.sh
1 TERMUX_PKG_HOMEPAGE=http://www.busybox.net/
2 TERMUX_PKG_DESCRIPTION="Tiny versions of many common UNIX utilities into a single small executable"
3 TERMUX_PKG_ESSENTIAL=yes
4 TERMUX_PKG_VERSION=1.24.2
5 TERMUX_PKG_BUILD_REVISION=1
6 TERMUX_PKG_SRCURL=http://www.busybox.net/downloads/busybox-${TERMUX_PKG_VERSION}.tar.bz2
7 TERMUX_PKG_BUILD_IN_SRC=yes
8
9 # NOTE: sed on mac does not work for building busybox, install gsed and symlink sed => gsed
10
11 CFLAGS+=" -llog -DTERMUX_EXPOSE_MEMPCPY=1" # Android system liblog.so for syslog
12
13 termux_step_configure () {
14 # Bug in gold linker with busybox in android r10e:
15 # https://sourceware.org/ml/binutils/2015-02/msg00386.html
16 CFLAGS+=" -fuse-ld=bfd"
17 LD+=.bfd
18
19 cp $TERMUX_PKG_BUILDER_DIR/busybox.config .config
20 echo "CONFIG_SYSROOT=\"$TERMUX_STANDALONE_TOOLCHAIN/sysroot\"" >> .config
21 echo "CONFIG_PREFIX=\"$TERMUX_PREFIX\"" >> .config
22 echo "CONFIG_CROSS_COMPILER_PREFIX=\"${TERMUX_HOST_PLATFORM}-\"" >> .config
23 echo "CONFIG_FEATURE_CROND_DIR=\"$TERMUX_PREFIX/var/spool/cron\"" >> .config
24 make oldconfig
25 }
26
27 termux_step_post_make_install () {
28 # Create symlinks in $PREFIX/bin/applets to $PREFIX/bin/busybox
29 rm -Rf $TERMUX_PREFIX/bin/applets
30 mkdir -p $TERMUX_PREFIX/bin/applets
31 cd $TERMUX_PREFIX/bin/applets
32 for f in `cat $TERMUX_PKG_SRCDIR/busybox.links`; do ln -s ../busybox `basename $f`; done
33
34 cd $TERMUX_PREFIX/bin
35 rm -f ash
36 ln -s busybox ash
37
38 # Install busybox man page
39 mkdir -p $TERMUX_PREFIX/share/man/man1
40 cp $TERMUX_PKG_SRCDIR/docs/busybox.1 $TERMUX_PREFIX/share/man/man1
41
42 # Needed for 'crontab -e' to work out of the box:
43 local _CRONTABS=$TERMUX_PREFIX/var/spool/cron/crontabs
44 mkdir -p $_CRONTABS
45 echo "Used by the busybox crontab and crond tools" > $_CRONTABS/README.termux
46 }
47