package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.5 KiB

5 years ago
package("moonjit")
set_homepage("https://github.com/moonjit/moonjit")
set_description("A Just-In-Time Compiler (JIT) for the Lua programming language.")
set_urls("https://github.com/moonjit/moonjit/archive/$(version).tar.gz",
"https://github.com:moonjit/moonjit.git")
add_versions("2.2.0", "83deb2c880488dfe7dd8ebf09e3b1e7613ef4b8420de53de6f712f01aabca2b6")
add_configs("nojit", { description = "Disable JIT.", default = false, type = "boolean"})
add_configs("fpu", { description = "Enable FPU.", default = true, type = "boolean"})
add_includedirs("include/luajit")
if not is_plat("windows") then
add_syslinks("dl")
end
on_load(function (package)
package:addenv("PATH", "bin")
4 years ago
if package:config("shared") then
package:addenv("PATH", "lib")
end
5 years ago
end)
on_install("windows", "linux", "macosx", "bsd", "android", "iphoneos", function (package)
5 years ago
local configs = {}
if package:config("shared") then
configs.kind = "shared"
end
configs.fpu = package:config("fpu")
configs.nojit = package:config("nojit")
os.cp(path.join(package:scriptdir(), "port", "xmake.lua"), "xmake.lua")
import("package.tools.xmake").install(package, configs)
end)
on_test(function (package)
if package:is_plat(os.host()) then
os.vrun("luajit -e \"print('hello xmake!')\"")
end
5 years ago
assert(package:has_cfuncs("lua_pcall", {includes = "luajit.h"}))
end)