libseccomp: add version check override
authorGeorge Sapkin <redacted>
Sun, 24 May 2026 20:19:03 +0000 (23:19 +0300)
committerGeorge Sapkin <redacted>
Mon, 25 May 2026 05:02:47 +0000 (08:02 +0300)
Skip version checks as none of the executables seem to report their
versions.

Signed-off-by: George Sapkin <redacted>
libs/libseccomp/test-version.sh [new file with mode: 0755]

diff --git a/libs/libseccomp/test-version.sh b/libs/libseccomp/test-version.sh
new file mode 100755 (executable)
index 0000000..8226ba9
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+# shellcheck shell=busybox
+
+case "$PKG_NAME" in
+libseccomp|\
+scmp_sys_resolver)
+       exit 0
+       ;;
+
+*)
+       echo "Untested package: $PKG_NAME" >&2
+       exit 1
+       ;;
+esac
git clone https://git.99rst.org/PROJECT