Files
packages/libs/libwacom/test-version.sh
T
George Sapkin a356098556 libwacom: add version check override
Skip version checks as none of the executables seem to report their
versions.

Signed-off-by: George Sapkin <george@sapk.in>
2026-05-25 08:02:47 +03:00

15 lines
142 B
Bash
Executable File

#!/bin/sh
# shellcheck shell=busybox
case "$PKG_NAME" in
libwacom)
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac