mirror of
https://github.com/openwrt/packages.git
synced 2026-06-17 14:50:07 +04:00
c7ca6d46f7
luajit2 use build number at -v, but releases are named by date Signed-off-by: Seo Suchan <tjtncks@gmail.com>
15 lines
204 B
Bash
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
|