opt/libseccomp/Pkgfile

19 lines
416 B
Plaintext
Raw Normal View History

2020-06-21 03:17:30 +02:00
# Description: Library for Linux Kernel's syscall filtering mechanism
2021-01-29 13:21:54 +01:00
# URL: https://github.com/seccomp/libseccomp
# Maintainer: Tim Biermann, tbier at posteo dot de
name=libseccomp
2022-04-22 17:11:21 +02:00
version=2.5.4
release=1
2021-01-29 13:21:54 +01:00
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
}