libseccomp: update to 2.3.1.

This commit is contained in:
Juan RP 2016-04-21 14:13:04 +02:00
parent 4b3a352efd
commit fca8e8f6de

View File

@ -1,15 +1,15 @@
# Template file for 'libseccomp' # Template file for 'libseccomp'
pkgname=libseccomp pkgname=libseccomp
version=2.3.0 version=2.3.1
revision=1 revision=1
build_style=gnu-configure build_style=gnu-configure
hostmakedepends="which automake libtool" hostmakedepends="automake libtool"
short_desc="High level interface to the Linux Kernel's seccomp filter" short_desc="High level interface to the Linux Kernel's seccomp filter"
maintainer="Juan RP <xtraeme@voidlinux.eu>" maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="https://github.com/seccomp/libseccomp/" homepage="https://github.com/seccomp/libseccomp/"
license="LGPL-2.1" license="LGPL-2.1"
distfiles="https://github.com/seccomp/${pkgname}/archive/v${version}.tar.gz" distfiles="https://github.com/seccomp/${pkgname}/archive/v${version}.tar.gz"
checksum=3fc63115048c41e96628f34a3286d002a20c33a05e86597a0a8bad61041dbba9 checksum=09864282ae579c34bd5ef75ef3487200adfecaa51f5cffc7c7ad1ed2f89f5d6c
post_extract() { post_extract() {
case "$XBPS_TARGET_MACHINE" in case "$XBPS_TARGET_MACHINE" in
@ -17,7 +17,7 @@ post_extract() {
esac esac
} }
pre_configure() { pre_configure() {
./autogen.sh NOCONFIGURE=1 ./autogen.sh
} }
libseccomp-devel_package() { libseccomp-devel_package() {
@ -26,7 +26,8 @@ libseccomp-devel_package() {
pkg_install() { pkg_install() {
vmove usr/include vmove usr/include
vmove usr/lib/pkgconfig vmove usr/lib/pkgconfig
vmove "usr/lib/*.so" vmove usr/lib/*.a
vmove usr/share vmove usr/lib/*.so
vmove usr/share/man/man3
} }
} }