]> git.99rst.org Git - openwrt-packages.git/commitdiff
expat: add version check override
authorWei-Ting Yang <redacted>
Wed, 24 Jun 2026 04:44:49 +0000 (12:44 +0800)
committerJosef Schlehofer <redacted>
Wed, 24 Jun 2026 10:22:05 +0000 (12:22 +0200)
Add version check override script.

Signed-off-by: Wei-Ting Yang <redacted>
libs/expat/test-version.sh [new file with mode: 0755]

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