diff options
author | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
commit | 48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch) | |
tree | 00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/devel/strace/strace.xibuild | |
parent | 871b2b573f01c1b3176a0f65458b3d281b41c437 (diff) |
removed idea of repos
Diffstat (limited to 'repo/devel/strace/strace.xibuild')
-rw-r--r-- | repo/devel/strace/strace.xibuild | 33 |
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 -} |