20 lines
429 B
Plaintext
20 lines
429 B
Plaintext
# Description: library for Linux' syscall filtering mechanism seccomp
|
|
# URL: https://github.com/seccomp/libseccomp
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
name=libseccomp
|
|
version=2.4.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
|
|
|
|
}
|