2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=http://sourceforge.net/projects/strace/
|
|
|
|
TERMUX_PKG_DESCRIPTION="Debugging utility to monitor the system calls used by a program and all the signals it receives"
|
2016-06-09 16:05:43 +02:00
|
|
|
TERMUX_PKG_VERSION=4.12
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_SRCURL=http://downloads.sourceforge.net/project/strace/strace/${TERMUX_PKG_VERSION}/strace-${TERMUX_PKG_VERSION}.tar.xz
|
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL=bin/strace-graph # This is a perl script
|
|
|
|
|
2016-01-04 03:00:15 +01:00
|
|
|
if [ $TERMUX_ARCH_BITS = "64" ]; then
|
|
|
|
# The strace configure script only looks for struct flock64 in <linux/fcntl.h>,
|
|
|
|
# but we actually have it in <fcntl.h> here:
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_type_struct_flock64=yes"
|
|
|
|
fi
|