blob: 0b3c938ab51bfff524073bb9da945b54e994fa5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# shellcheck shell=busybox
# None of the giflib-utils executables print the package version.
# Skip the generic version probe.
case "$PKG_NAME" in
giflib|giflib-utils)
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac
|