opt/libseccomp/Pkgfile

19 lines
416 B
Plaintext

# Description: Library for Linux Kernel's syscall filtering mechanism
# URL: https://github.com/seccomp/libseccomp
# Maintainer: Tim Biermann, tbier at posteo dot de
name=libseccomp
version=2.5.5
release=1
source=(https://github.com/seccomp/libseccomp/archive/v${version}/libseccomp-${version}.tar.gz)
build() {
cd $name-$version
./autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}