From c82e88dd00d1b0b7fcfb4e5628d99611388cef6f Mon Sep 17 00:00:00 2001 From: rawnix ports Date: Sat, 26 Sep 2026 18:19:05 +0000 Subject: sync 2026-09-26 18:19 UTC 1672 files changed, 151396 insertions(+) --- core/libseccomp/MAKEPKG | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 core/libseccomp/MAKEPKG (limited to 'core/libseccomp/MAKEPKG') diff --git a/core/libseccomp/MAKEPKG b/core/libseccomp/MAKEPKG new file mode 100644 index 0000000..3326144 --- /dev/null +++ b/core/libseccomp/MAKEPKG @@ -0,0 +1,36 @@ +#!/bin/mkpkg +# description: Syscall filtering library +# url: https://github.com/seccomp/libseccomp + +name=libseccomp +version=2.6.1 +release=1 +makedeps=(autoconf automake libtool gperf) +source=(https://github.com/seccomp/$name/archive/v$version/$name-$version.tar.gz) + +sha256sums=( + "f9a13e4c633d319a9240189760ca348caa0837c0ebe2a09b17061da8ceaf60f0" +) + +build() { + cd $name-$version + + ./autogen.sh + + ./configure \ + --prefix=/ \ + --libdir=/lib \ + --mandir=/usr/share/man \ + --disable-static + + make + make DESTDIR=$PKG install + +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh -- cgit v1.3.1