summaryrefslogtreecommitdiff
path: root/repo/system/libcap/libcap.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
committerdavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
commit48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch)
tree00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/system/libcap/libcap.xibuild
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/system/libcap/libcap.xibuild')
-rw-r--r--repo/system/libcap/libcap.xibuild29
1 files changed, 0 insertions, 29 deletions
diff --git a/repo/system/libcap/libcap.xibuild b/repo/system/libcap/libcap.xibuild
deleted file mode 100644
index dab917e..0000000
--- a/repo/system/libcap/libcap.xibuild
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make "
-DEPS="musl pam"
-
-PKG_VER=2.62
-SOURCE=https://git.kernel.org/pub/scm/libs/libcap/libcap.git/snapshot/libcap-$PKG_VER.tar.gz
-
-DESC="POSIX 1003.1e capabilities"
-
-prepare () {
- sed -i '/install -m.*STA/d' libcap/Makefile
- sed -i 's/xargs -e/xargs /g' pam_cap/Makefile
-}
-
-build () {
- make prefix=/usr lib=lib
-}
-
-check () {
- make test
-}
-
-package() {
- make prefix=/usr lib=lib DESTDIR=$PKG_DEST install
- chmod 755 $PKG_DEST/usr/lib/libcap.so.*
- chmod 755 $PKG_DEST/usr/lib/libpsx.so.*
-
-}