2020-06-21 11:17:30 +10:00
|
|
|
# Description: Library for Linux Kernel's syscall filtering mechanism
|
2021-01-29 12:21:54 +00:00
|
|
|
# URL: https://github.com/seccomp/libseccomp
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-02-03 21:33:13 +11:00
|
|
|
|
|
|
|
name=libseccomp
|
2023-12-02 10:02:24 +01:00
|
|
|
version=2.5.5
|
2020-02-03 21:33:13 +11:00
|
|
|
release=1
|
2021-01-29 12:21:54 +00:00
|
|
|
source=(https://github.com/seccomp/libseccomp/archive/v${version}/libseccomp-${version}.tar.gz)
|
2020-02-03 21:33:13 +11:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./autogen.sh
|
|
|
|
./configure --prefix=/usr
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|