opt/libseccomp/Pkgfile

19 lines
429 B
Plaintext
Raw Normal View History

2020-06-21 03:17:30 +02:00
# Description: Library for Linux Kernel's syscall filtering mechanism
# URL: https://github.com/seccomp/libseccomp
# Maintainer: Thomas Penteker, tek at serverop dot de
name=libseccomp
2020-07-21 15:31:51 +02:00
version=2.5.0
release=1
source=(https://github.com/seccomp/libseccomp/archive/v${version}/libseccomp-v${version}.tar.gz)
build() {
cd $name-$version
./autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}