33 lines
		
	
	
		
			950 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			950 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Template file for 'strace'
 | 
						|
pkgname=strace
 | 
						|
version=4.26
 | 
						|
revision=2
 | 
						|
build_style=gnu-configure
 | 
						|
configure_args="--with-libunwind"
 | 
						|
makedepends="libunwind-devel"
 | 
						|
short_desc="System Call Tracer"
 | 
						|
maintainer="Juan RP <xtraeme@voidlinux.org>"
 | 
						|
license="LGPL-2.1-or-later"
 | 
						|
homepage="https://strace.io/"
 | 
						|
distfiles="https://github.com/strace/strace/releases/download/v${version}/strace-${version}.tar.xz"
 | 
						|
checksum=7c4d2ffeef4f7d1cdc71062ca78d1130eb52f947c2fca82f59f6a1183bfa1e1c
 | 
						|
 | 
						|
case "$XBPS_TARGET_MACHINE" in
 | 
						|
	aarch64-musl) configure_args=; makedepends= ;;
 | 
						|
esac
 | 
						|
 | 
						|
case "$XBPS_TARGET_MACHINE" in
 | 
						|
	aarch64*|ppc64*) configure_args+=" --enable-mpers=no"
 | 
						|
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
 | 
						|
}
 |