2013-04-09 01:11:19 +02:00
|
|
|
# Description: library for Linux' syscall filtering mechanism seccomp
|
2017-05-08 01:01:53 +02:00
|
|
|
# URL: https://github.com/seccomp/libseccomp
|
2013-04-09 01:11:19 +02:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
|
|
|
|
name=libseccomp
|
2019-03-27 23:47:34 +01:00
|
|
|
version=2.4.0
|
2013-04-09 01:11:19 +02:00
|
|
|
release=1
|
2017-03-28 13:37:28 +02:00
|
|
|
source=(https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz)
|
2013-04-09 01:11:19 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./configure --prefix=/usr
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
mv $PKG/usr/share/man $PKG/usr
|
|
|
|
rm -r $PKG/usr/share
|
|
|
|
}
|