squeezelite: add version test override

The generic package test greps executable output for PKG_VERSION, which
cannot match here: PKG_VERSION separates the build number with a dot for
apk, while squeezelite reports it with a hyphen.

Derive the expected string from PKG_VERSION rather than hardcoding it, so
the check keeps working on later updates.

Signed-off-by: Kel Modderman <kelvmod@gmail.com>
pull/30152/head
Kel Modderman 2026-08-08 20:46:57 +10:00 committed by Alexandru Ardelean
parent f81c231553
commit 0538c8a168
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/bin/sh
# shellcheck shell=busybox
# PKG_VERSION dots the build number for apk; squeezelite reports it hyphenated
version=$(echo "$PKG_VERSION" | sed 's/\.\([^.]*\)$/-\1/')
case "$PKG_NAME" in
squeezelite-full | squeezelite-dynamic | squeezelite-custom)
squeezelite '-?' 2>&1 | grep -F "Squeezelite ${version},"
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac