blob: 1d33a8a0d99f8334840eb591c7c9838c9ce5b902 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# shellcheck shell=busybox
case "$PKG_NAME" in
prince)
# prince requires a configuration file and does not provide any
# option to report its version
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac
|