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.

76 lines
3.0 KiB

6 years ago
package("lua")
set_homepage("http://lua.org")
set_description("A powerful, efficient, lightweight, embeddable scripting language.")
4 years ago
add_urls("https://www.lua.org/ftp/lua-$(version).tar.gz", {version = function (version)
return version:sub(2)
end})
add_urls("https://github.com/lua/lua.git")
6 years ago
4 years ago
add_versions("v5.4.2", "11570d97e9d7303c0a59567ed1ac7c648340cd0db10d5fd594c09223ef2f524f")
add_versions("v5.4.1", "4ba786c3705eb9db6567af29c91a01b81f1c0ac3124fdbf6cd94bdd9e53cca7d")
add_versions("v5.3.6", "fc5fd69bb8736323f026672b1b7235da613d7177e72558893a0bdcd320466d60")
add_versions("v5.2.3", "13c2fb97961381f7d06d5b5cea55b743c163800896fd5c5e2356201d3619002d")
add_versions("v5.1.1", "c5daeed0a75d8e4dd2328b7c7a69888247868154acbda69110e97d4a6e17d1f0")
add_versions("v5.1.5", "2640fc56a795f29d28ef15e13c34a47e223960b0240e8cb0a82d9b0738695333")
6 years ago
add_includedirs("include/lua")
6 years ago
if not is_plat("windows") then
5 years ago
add_syslinks("dl", "m")
6 years ago
end
6 years ago
on_load(function (package)
package:addenv("PATH", "bin")
6 years ago
end)
5 years ago
on_install("linux", "macosx", "windows", "android", "bsd", function (package)
4 years ago
local sourcedir = os.isdir("src") and "src/" or "" -- for tar.gz or git source
io.writefile("xmake.lua", format([[
4 years ago
local sourcedir = "%s"
6 years ago
target("lualib")
set_kind("%s")
6 years ago
set_basename("lua")
4 years ago
add_headerfiles(sourcedir .. "*.h", {prefixdir = "lua"})
add_files(sourcedir .. "*.c|lua.c|luac.c|onelua.c")
add_defines("LUA_COMPAT_5_2", "LUA_COMPAT_5_1")
5 years ago
if is_plat("linux", "bsd") then
add_defines("LUA_USE_LINUX")
5 years ago
add_defines("LUA_DL_DLOPEN")
elseif is_plat("macosx") then
add_defines("LUA_USE_MACOSX")
5 years ago
add_defines("LUA_DL_DYLD")
elseif is_plat("windows") then
-- Lua already detects Windows and sets according defines
if is_kind("shared") then
add_defines("LUA_BUILD_AS_DLL", {public = true})
end
end
6 years ago
target("lua")
set_enabled(%s)
6 years ago
set_kind("binary")
4 years ago
add_files(sourcedir .. "lua.c")
6 years ago
add_deps("lualib")
6 years ago
if not is_plat("windows") then
add_syslinks("dl")
end
4 years ago
]], sourcedir,
package:config("shared") and "shared" or "static",
is_plat(os.host()) and "true" or "false"))
local configs = {}
4 years ago
if package:config("shared") then
configs.kind = "shared"
end
import("package.tools.xmake").install(package, configs)
6 years ago
end)
6 years ago
on_test(function (package)
if is_plat(os.host()) then
os.vrun("lua -e \"print('hello xmake!')\"")
end
assert(package:has_cfuncs("lua_getinfo", {includes = "lua.h"}))
6 years ago
end)