luajit2: add test-version.sh

luajit2 use build number at -v, but releases are named by date

Signed-off-by: Seo Suchan <tjtncks@gmail.com>
This commit is contained in:
Seo Suchan
2026-05-29 00:09:26 +09:00
committed by Christian Marangi
parent 78a0f519d4
commit c7ca6d46f7
+14
View File
@@ -0,0 +1,14 @@
#!/bin/sh
# shellcheck shell=busybox
case "$PKG_NAME" in #luajit2 use build number at -v but releases are named by date
luajit2)
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac