diff --git a/libs/libxslt/test-version.sh b/libs/libxslt/test-version.sh new file mode 100644 index 0000000000..a33d667d93 --- /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