summaryrefslogtreecommitdiff
path: root/repo/system/libseccomp.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/libseccomp.xibuild')
-rw-r--r--repo/system/libseccomp.xibuild15
1 files changed, 15 insertions, 0 deletions
diff --git a/repo/system/libseccomp.xibuild b/repo/system/libseccomp.xibuild
new file mode 100644
index 0000000..1d5fe3a
--- /dev/null
+++ b/repo/system/libseccomp.xibuild
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+DEPS=(glibc)
+
+SOURCE=https://github.com/seccomp/libseccomp/releases/download/v2.5.3/libseccomp-2.5.3.tar.gz
+
+DESC="Enhanced seccomp library"
+
+build () {
+ ./configure --prefix=/usr --disable-static &&
+ make
+ make check
+ make prefix=/usr lib=lib DESTDIR=$PKG_DEST install
+
+}