1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-17 09:07:06 +00:00
termux-packages/packages/strace/build.sh

18 lines
677 B
Bash
Raw Normal View History

2017-01-15 18:40:49 +00:00
TERMUX_PKG_HOMEPAGE=https://strace.io/
2018-07-11 08:35:45 +00:00
TERMUX_PKG_DESCRIPTION="Debugging utility to monitor system calls and signals received"
2019-01-21 12:53:58 +00:00
TERMUX_PKG_LICENSE="BSD"
2020-06-21 18:03:14 +00:00
TERMUX_PKG_VERSION=5.7
2018-10-14 18:30:16 +00:00
TERMUX_PKG_SRCURL=https://github.com/strace/strace/releases/download/v$TERMUX_PKG_VERSION/strace-$TERMUX_PKG_VERSION.tar.xz
2020-06-21 18:03:14 +00:00
TERMUX_PKG_SHA256=b284b59f9bcd95b9728cea5bd5c0edc5ebe360af73dc76fbf6334f11c777ccd8
2015-06-12 23:03:31 +00:00
TERMUX_PKG_RM_AFTER_INSTALL=bin/strace-graph # This is a perl script
# Without st_cv_m32_mpers=no the build fails if gawk is installed.
2018-05-19 00:57:29 +00:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
st_cv_m32_mpers=no
--enable-mpers=no
2018-07-11 09:23:53 +00:00
--without-libdw
2018-05-19 00:57:29 +00:00
"
termux_step_pre_configure() {
CPPFLAGS+=" -Dfputs_unlocked=fputs"
}