diff options
author | davidovski <david@davidovski.xyz> | 2022-01-15 11:43:08 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-15 11:43:08 +0000 |
commit | c67556db1e7fb069d3e22fcd1972af6b34a89153 (patch) | |
tree | b522c186de041f359e425c1e9fb6da6eb3734440 /repo/core | |
parent | 8a77e5f7e5f678c463b0e072f3aa86632af03263 (diff) |
added libcap-ng
Diffstat (limited to 'repo/core')
-rw-r--r-- | repo/core/libcap-ng.xibuild | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/repo/core/libcap-ng.xibuild b/repo/core/libcap-ng.xibuild new file mode 100644 index 0000000..c677415 --- /dev/null +++ b/repo/core/libcap-ng.xibuild @@ -0,0 +1,15 @@ +#!/bin/bash + +DEPS=(glibc) + +SOURCE=https://github.com/stevegrubb/libcap-ng/archive/refs/tags/v0.8.2.tar.gz + +DESC="A library for linux that makes posix capabilities easy" + +build () { + make prefix=/usr lib=lib +} + +package() { + make prefix=/usr lib=lib DESTDIR=$PKG_DEST install +} |