contrib/libseccomp/Pkgfile

19 lines
429 B
Plaintext
Raw Normal View History

2013-04-09 01:11:19 +02:00
# Description: library for Linux' syscall filtering mechanism seccomp
2019-04-10 01:33:38 +02:00
# URL: https://github.com/seccomp/libseccomp
2020-01-29 13:52:29 +01:00
# Maintainer: Thomas Penteker, tek at serverop dot de
2013-04-09 01:11:19 +02:00
name=libseccomp
2020-01-29 13:52:29 +01:00
version=2.4.2
2013-04-09 01:11:19 +02:00
release=1
2019-04-10 01:33:38 +02:00
source=(https://github.com/seccomp/libseccomp/archive/v${version}/libseccomp-v${version}.tar.gz)
2013-04-09 01:11:19 +02:00
build() {
2020-01-29 13:52:29 +01:00
cd $name-$version
2013-04-09 01:11:19 +02:00
2019-04-10 01:33:38 +02:00
./autogen.sh
2013-04-09 01:11:19 +02:00
./configure --prefix=/usr
make
2020-01-29 13:52:29 +01:00
make DESTDIR=$PKG install
2013-04-09 01:11:19 +02:00
}