New package: libseccomp-1.0.0.

This commit is contained in:
Juan RP 2012-10-16 11:33:33 +02:00
parent 69c26cec37
commit db8b372fa4
5 changed files with 38 additions and 0 deletions

View file

@ -1100,3 +1100,4 @@ libr_config.so.0.9.2 radare2-0.9.2_1
libr_core.so.0.9.2 radare2-0.9.2_1
libzmq.so.3 zeromq-3.2.0_1
libstatgrab.so.6 libstatgrab-0.17_1
libseccomp.so.1 libseccomp-1.0.0_1

1
srcpkgs/libseccomp-devel Symbolic link
View file

@ -0,0 +1 @@
libseccomp

View file

@ -0,0 +1,14 @@
# Template file for 'libseccomp-devel'.
#
noarch=yes
depends="${sourcepkg}-${version}_${revision}"
short_desc="${short_desc} -- development files"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
do_install() {
vmove usr/include usr
vmove usr/lib/pkgconfig usr/lib
vmove usr/share usr
}

View file

@ -0,0 +1 @@
libc.so.6

View file

@ -0,0 +1,21 @@
# Template file for 'libseccomp'
pkgname=libseccomp
version=1.0.0
revision=1
build_style=configure
configure_args="--prefix=/usr"
subpackages="${pkgname}-devel"
makedepends="which"
short_desc="High level interface to the Linux Kernel's seccomp filter"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://sourceforge.net/projects/libseccomp/"
license="LGPL-2.1"
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=7c35493c890af509955397ea1f5d3c1a8e84a3002a64fa8c716de395e117cc4c
long_desc="
The libseccomp library provides and easy to use, platform independent,
interface to the Linux Kernel's syscall filtering mechanism: seccomp.
The libseccomp API is designed to abstract away the underlying BPF based
syscall filter language and present a more conventional function-call
based filtering interface that should be familiar to, and easily adopted
by application developers."