diff options
author | Thomas Penteker <tek@serverop.de> | 2013-04-09 01:11:19 +0200 |
---|---|---|
committer | Thomas Penteker <tek@serverop.de> | 2013-04-09 01:11:19 +0200 |
commit | 18e1816c064cc5e8cf3e83747ad8e6577dfd8413 (patch) | |
tree | 859562a06d24745f2861327c8b6619d4b1ae0bd8 /libseccomp | |
parent | 0439449eb9343c664a84446dacb6da30d78b08ea (diff) | |
download | contrib-18e1816c064cc5e8cf3e83747ad8e6577dfd8413.tar.gz contrib-18e1816c064cc5e8cf3e83747ad8e6577dfd8413.tar.xz |
libseccomp: inital import
Diffstat (limited to 'libseccomp')
-rw-r--r-- | libseccomp/.footprint | 22 | ||||
-rw-r--r-- | libseccomp/.md5sum | 1 | ||||
-rw-r--r-- | libseccomp/Pkgfile | 20 |
3 files changed, 43 insertions, 0 deletions
diff --git a/libseccomp/.footprint b/libseccomp/.footprint new file mode 100644 index 000000000..7ce8c6873 --- /dev/null +++ b/libseccomp/.footprint @@ -0,0 +1,22 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/seccomp.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libseccomp.so -> libseccomp.so.1.0.0 +lrwxrwxrwx root/root usr/lib/libseccomp.so.1 -> libseccomp.so.1.0.0 +-rwxr-xr-x root/root usr/lib/libseccomp.so.1.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libseccomp.pc +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/seccomp_attr_get.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_attr_set.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_export_bpf.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_export_pfc.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_init.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_load.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_release.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_reset.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_rule_add.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_rule_add_exact.3.gz +-rw-r--r-- root/root usr/man/man3/seccomp_syscall_priority.3.gz diff --git a/libseccomp/.md5sum b/libseccomp/.md5sum new file mode 100644 index 000000000..04a99ce3a --- /dev/null +++ b/libseccomp/.md5sum @@ -0,0 +1 @@ +e9796bce21fab55fd661be4ee618211d libseccomp-1.0.0.tar.gz diff --git a/libseccomp/Pkgfile b/libseccomp/Pkgfile new file mode 100644 index 000000000..33f81bd50 --- /dev/null +++ b/libseccomp/Pkgfile @@ -0,0 +1,20 @@ +# Description: library for Linux' syscall filtering mechanism seccomp +# URL: http://sourceforge.net/projects/libseccomp +# Maintainer: Thomas Penteker, tek at serverop dot de + +name=libseccomp +version=1.0.0 +release=1 +source=(http://prdownloads.sf.net/project/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure --prefix=/usr + + make + make DESTDIR=$PKG install + + mv $PKG/usr/share/man $PKG/usr + rm -r $PKG/usr/share +} |