summaryrefslogtreecommitdiff
path: root/repo/devel/strace/strace.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/devel/strace/strace.xibuild')
-rw-r--r--repo/devel/strace/strace.xibuild33
1 files changed, 0 insertions, 33 deletions
diff --git a/repo/devel/strace/strace.xibuild b/repo/devel/strace/strace.xibuild
deleted file mode 100644
index 2c925ba..0000000
--- a/repo/devel/strace/strace.xibuild
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/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
-}