X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/f6e85769c9e29fcf18c503603624a2d05b47a151..02baa030aa6273c97592f6790499f8892cb59223:/packages/strace/build.sh diff --git a/packages/strace/build.sh b/packages/strace/build.sh index 2c8ec2f7..bad06b88 100755 --- a/packages/strace/build.sh +++ b/packages/strace/build.sh @@ -1,11 +1,17 @@ -TERMUX_PKG_HOMEPAGE=http://sourceforge.net/projects/strace/ +TERMUX_PKG_HOMEPAGE=https://strace.io/ TERMUX_PKG_DESCRIPTION="Debugging utility to monitor the system calls used by a program and all the signals it receives" -TERMUX_PKG_VERSION=4.12 +TERMUX_PKG_VERSION=4.15 TERMUX_PKG_SRCURL=http://downloads.sourceforge.net/project/strace/strace/${TERMUX_PKG_VERSION}/strace-${TERMUX_PKG_VERSION}.tar.xz +TERMUX_PKG_SHA256=c0cdc094d6141fd9dbf6aaad605142d651ae10998b660fda57fc61f7ad583ca9 TERMUX_PKG_RM_AFTER_INSTALL=bin/strace-graph # This is a perl script -if [ $TERMUX_ARCH_BITS = "64" ]; then - # The strace configure script only looks for struct flock64 in , - # but we actually have it in here: - TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_type_struct_flock64=yes" -fi +termux_step_pre_configure () { + if [ $TERMUX_ARCH_BITS = "64" ]; then + # The strace configure script only looks for struct flock64 in , + # but we actually have it in here: + TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_type_struct_flock64=yes" + fi + + CFLAGS+=" -DIOV_MAX=1024" +} +