Files
packages/lang/lua/luajit2/test-version.sh
T
Seo Suchan c7ca6d46f7 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>
2026-06-07 20:21:09 +02:00

15 lines
204 B
Bash

#!/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