From 18e1816c064cc5e8cf3e83747ad8e6577dfd8413 Mon Sep 17 00:00:00 2001 From: Thomas Penteker Date: Tue, 9 Apr 2013 01:11:19 +0200 Subject: [PATCH] libseccomp: inital import --- libseccomp/.footprint | 22 ++++++++++++++++++++++ libseccomp/.md5sum | 1 + libseccomp/Pkgfile | 20 ++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 libseccomp/.footprint create mode 100644 libseccomp/.md5sum create mode 100644 libseccomp/Pkgfile 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 +}