first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/libseccomp/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

View File

@ -0,0 +1,2 @@
# 2.5.4
First version

16
src/libseccomp/pkg.sh Normal file
View 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
}