summaryrefslogtreecommitdiff
path: root/repo/devel/strace.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-04 23:52:30 +0100
committerdavidovski <david@davidovski.xyz>2022-05-04 23:52:30 +0100
commit739c65c54cb0e957df5e9b76f93fb02554e5cac3 (patch)
tree09ddfa0a342f3ea9de136cb50abdd79821bf1b53 /repo/devel/strace.xibuild
parent4c585ad54388285500fd18a6aaa516894e0f2c16 (diff)
moved everything to new file formatting
Diffstat (limited to 'repo/devel/strace.xibuild')
-rw-r--r--repo/devel/strace.xibuild33
1 files changed, 0 insertions, 33 deletions
diff --git a/repo/devel/strace.xibuild b/repo/devel/strace.xibuild
deleted file mode 100644
index e523146..0000000
--- a/repo/devel/strace.xibuild
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="autoconf automake binutils-dev elfutils-dev 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
-}