rclone: Switch tarballs to signed (fixes #2382)
[termux-packages] / packages / strace / build.sh
1 TERMUX_PKG_HOMEPAGE=https://strace.io/
2 TERMUX_PKG_DESCRIPTION="Debugging utility to monitor the system calls used by a program and all the signals it receives"
3 TERMUX_PKG_VERSION=4.20
4 TERMUX_PKG_SHA256=5bf3148dd17306a42566f7da17368fdd781afa147db05ea63a4ca2b50f58c523
5 TERMUX_PKG_SRCURL=https://downloads.sourceforge.net/project/strace/strace/${TERMUX_PKG_VERSION}/strace-${TERMUX_PKG_VERSION}.tar.xz
6 TERMUX_PKG_RM_AFTER_INSTALL=bin/strace-graph # This is a perl script
7 # Without st_cv_m32_mpers=no the build fails if gawk is installed.
8 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="st_cv_m32_mpers=no"
9
10 termux_step_pre_configure () {
11 if [ $TERMUX_ARCH_BITS = "64" ]; then
12 # The strace configure script only looks for struct flock64 in <linux/fcntl.h>,
13 # but we actually have it in <fcntl.h> here:
14 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_type_struct_flock64=yes"
15 fi
16
17 CFLAGS+=" -DIOV_MAX=1024"
18 }
19