From: Seo Suchan Date: Thu, 28 May 2026 15:10:15 +0000 (+0900) Subject: libxslt: add test-version.sh X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=14d197418d266f9ba8268f54159907bf641876e7;p=openwrt-packages.git libxslt: add test-version.sh xsltproc doesn't say it's own version but only dependcies it compiled on Signed-off-by: Seo Suchan --- diff --git a/libs/libxslt/test-version.sh b/libs/libxslt/test-version.sh new file mode 100644 index 000000000..a33d667d9 --- /dev/null +++ b/libs/libxslt/test-version.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +# shellcheck shell=busybox + +#xsltproc doesn't say it's own version but only depends +case "$PKG_NAME" in +xsltproc|libxslt|libexslt) + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac