add lua binding (#53)

This commit is contained in:
Ziyao
2024-02-29 21:37:54 +08:00
committed by GitHub
parent 070f52dda3
commit 683210d02f
3 changed files with 84 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package = "ruapu"
version = "0.1-1"
source = {
url = "https://github.com/nihui/ruapu.git"
}
description = {
summary = "Detect CPU ISA features with single-file",
homepage = "https://github.com/nihui/ruapu",
license = "MIT"
}
dependencies = {
"lua >= 5.2, <= 5.4"
}
build = {
type = "builtin",
modules = {
ruapu = "ruapu-binding.c"
}
}