summaryrefslogtreecommitdiff
path: root/repo/strace/strace.xibuild
blob: 2c925bad25728aac2dcf1ba9fdfeaf0c2e424733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

MAKEDEPS="autoconf automake binutils elfutils gawk linux-headers"
DEPS="libelf musl"

PKG_VER=5.17
SOURCE=https://github.com/strace/strace/releases/download/v$PKG_VER/strace-$PKG_VER.tar.xz
ADDITIONAL="
disable-fortify.patch
nlattr-fix.patch
"

DESC="Diagnostic, debugging and instructional userspace tracer"

prepare () {
    apply_patches
}

build () {
    export CFLAGS="$CFLAGS -Dsigcontext_struct=sigcontext"
    ./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		--enable-mpers=no
	make

}

package () {
    make -j1 DESTDIR=$PKG_DEST install
}