28 lines
831 B
Bash
28 lines
831 B
Bash
# Template file for 'strace'
|
|
pkgname=strace
|
|
version=4.16
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-libunwind"
|
|
makedepends="libunwind-devel"
|
|
short_desc="A System Call Tracer"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://sourceforge.net/projects/strace"
|
|
license="BSD"
|
|
distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.xz"
|
|
checksum=98487cb5178ec1259986cc9f6e2a844f50e5d1208c112cc22431a1e4d9adf0ef
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
aarch64-musl) configure_args=; makedepends= ;;
|
|
esac
|
|
|
|
pre_configure() {
|
|
sed -i -e 's/include <linux\/socket.h>/include <sys\/socket.h>/g' configure
|
|
sed -i -e 's/include <sgidefs.h>/include <asm\/sgidefs.h>/g' configure
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) export CFLAGS+=" -Dsigcontext_struct=sigcontext";;
|
|
esac
|
|
}
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|