contrib/libseccomp/Pkgfile

20 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
2013-04-09 01:11:19 +02:00
# Maintainer: Thomas Penteker, tek at serverop dot de
name=libseccomp
2019-03-27 23:47:34 +01:00
version=2.4.0
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() {
cd $name-$version
2019-04-10 01:33:38 +02:00
./autogen.sh
2013-04-09 01:11:19 +02:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}