blob: b2ea8a24f184834d7efd3e91fe4725d1ad120949 (
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
pimbd)
# The package version is derived from the source date and git
# hash, which the binary does not report
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac
|