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