first commit
This commit is contained in:
3
src/libseccomp/.gitignore
vendored
Normal file
3
src/libseccomp/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libseccomp/changes.md
Normal file
2
src/libseccomp/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.5.4
|
||||
First version
|
16
src/libseccomp/pkg.sh
Normal file
16
src/libseccomp/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="libseccomp"
|
||||
DESC="Easy to use and platform independent interface to the Linux kernel's syscall filtering mechanism"
|
||||
VERSION="2.5.4"
|
||||
FILES=("https://github.com/seccomp/libseccomp/releases/download/v$VERSION/libseccomp-$VERSION.tar.gz")
|
||||
HASHES=("74008bb33234e0c2a0d998e7bee5c625")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr --disable-static
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user