X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/49ca09e5e57406aca61e838e6d6757123b9d2fcb..af4dc416ed4471e533783491e720d5695f91f447:/packages/busybox/build.sh diff --git a/packages/busybox/build.sh b/packages/busybox/build.sh index 22f54332..51fecc37 100755 --- a/packages/busybox/build.sh +++ b/packages/busybox/build.sh @@ -1,26 +1,27 @@ TERMUX_PKG_HOMEPAGE=http://www.busybox.net/ TERMUX_PKG_DESCRIPTION="Tiny versions of many common UNIX utilities into a single small executable" TERMUX_PKG_ESSENTIAL=yes -TERMUX_PKG_VERSION=1.23.2 -TERMUX_PKG_BUILD_REVISION=1 -TERMUX_PKG_SRCURL=http://www.busybox.net/downloads/busybox-${TERMUX_PKG_VERSION}.tar.bz2 +TERMUX_PKG_VERSION=1.25.1 +TERMUX_PKG_REVISION=1 +TERMUX_PKG_SRCURL=https://www.busybox.net/downloads/busybox-${TERMUX_PKG_VERSION}.tar.bz2 TERMUX_PKG_BUILD_IN_SRC=yes +# We replace env in the old coreutils package: +TERMUX_PKG_CONFLICTS="coreutils (<< 8.25-4)" -# NOTE: sed on mac does not work for building busybox, install gsed and symlink sed => gsed +# NOTE: sed on mac does not work for building busybox, install gnu-sed with +# homebrew using the --with-default-names option. -CFLAGS+=" -llog -DTERMUX_EXPOSE_MEMPCPY=1" # Android system liblog.so for syslog +termux_step_pre_configure () { + CFLAGS+=" -llog -DTERMUX_EXPOSE_MEMPCPY=1" # Android system liblog.so for syslog +} termux_step_configure () { - # Bug in gold linker with busybox in android r10e: - # https://sourceware.org/ml/binutils/2015-02/msg00386.html - CFLAGS+=" -fuse-ld=bfd" - LD+=.bfd - cp $TERMUX_PKG_BUILDER_DIR/busybox.config .config echo "CONFIG_SYSROOT=\"$TERMUX_STANDALONE_TOOLCHAIN/sysroot\"" >> .config echo "CONFIG_PREFIX=\"$TERMUX_PREFIX\"" >> .config echo "CONFIG_CROSS_COMPILER_PREFIX=\"${TERMUX_HOST_PLATFORM}-\"" >> .config echo "CONFIG_FEATURE_CROND_DIR=\"$TERMUX_PREFIX/var/spool/cron\"" >> .config + echo "CONFIG_SV_DEFAULT_SERVICE_DIR=\"$TERMUX_PREFIX/var/service\"" >> .config make oldconfig } @@ -31,14 +32,28 @@ termux_step_post_make_install () { cd $TERMUX_PREFIX/bin/applets for f in `cat $TERMUX_PKG_SRCDIR/busybox.links`; do ln -s ../busybox `basename $f`; done + # The 'ash' and 'env' applets are special in that they go into $PREFIX/bin: cd $TERMUX_PREFIX/bin - rm -f ash - # Wasteful with a copy, but need to update pwd.h patch before fixing: - cp busybox ash - chmod +x ash + ln -f -s busybox ash + ln -f -s busybox env # Install busybox man page mkdir -p $TERMUX_PREFIX/share/man/man1 cp $TERMUX_PKG_SRCDIR/docs/busybox.1 $TERMUX_PREFIX/share/man/man1 + + # Needed for 'crontab -e' to work out of the box: + local _CRONTABS=$TERMUX_PREFIX/var/spool/cron/crontabs + mkdir -p $_CRONTABS + echo "Used by the busybox crontab and crond tools" > $_CRONTABS/README.termux + + # Setup some services + mkdir -p $TERMUX_PREFIX/var/service + cd $TERMUX_PREFIX/var/service + mkdir -p ftpd telnetd + echo '#!/bin/sh' > ftpd/run + echo 'exec tcpsvd -vE 0.0.0.0 8021 ftpd /data/data/com.termux/files/home' >> ftpd/run + echo '#!/bin/sh' > telnetd/run + echo 'exec telnetd -F' >> telnetd/run + chmod +x */run }