summaryrefslogtreecommitdiffstats
path: root/libs/libxslt/test-version.sh
blob: a33d667d93414f0b0cbb9abbdcbbe061b7928f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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