strace: Update homepage
[termux-packages] / packages / strace / build.sh
CommitLineData
d7ba6d5d 1TERMUX_PKG_HOMEPAGE=https://strace.io/
59f0d218 2TERMUX_PKG_DESCRIPTION="Debugging utility to monitor the system calls used by a program and all the signals it receives"
81f962e0 3TERMUX_PKG_VERSION=4.15
59f0d218 4TERMUX_PKG_SRCURL=http://downloads.sourceforge.net/project/strace/strace/${TERMUX_PKG_VERSION}/strace-${TERMUX_PKG_VERSION}.tar.xz
81f962e0 5TERMUX_PKG_SHA256=c0cdc094d6141fd9dbf6aaad605142d651ae10998b660fda57fc61f7ad583ca9
59f0d218
FF
6TERMUX_PKG_RM_AFTER_INSTALL=bin/strace-graph # This is a perl script
7
7ce56385
FF
8termux_step_pre_configure () {
9 if [ $TERMUX_ARCH_BITS = "64" ]; then
10 # The strace configure script only looks for struct flock64 in <linux/fcntl.h>,
11 # but we actually have it in <fcntl.h> here:
12 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_type_struct_flock64=yes"
13 fi
14
15 CFLAGS+=" -DIOV_MAX=1024"
16}
eb77b1e8 17