Skip to content

Commit

Permalink
angelscript: add 2.37.0 version (#5029)
Browse files Browse the repository at this point in the history
* angelscript: add 2.37.0 version

* add unofficial mirror

* add check
  • Loading branch information
star-hengxing authored Aug 24, 2024
1 parent 063862d commit 20149ac
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion packages/a/angelscript/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ package("angelscript")
set_description("Extremely flexible cross-platform scripting library designed to allow applications to extend their functionality through external scripts")
set_license("zlib")

add_urls("https://github.com/codecat/angelscript-mirror.git")
add_urls("http://angelcode.com/angelscript/sdk/files/angelscript_$(version).zip")

add_versions("2.37.0", "0c52d1688016a0b2484e9ca549471c4e295df060770c57840144c64815f54f10")
add_versions("2.36.0", "33f95f7597bc0d88b097d35e7b1320d15419ffc5779851d9d2a6cccec57811b3")
add_versions("2.35.1", "5c1096b6d6cf50c7e77ae93c736d35b69b07b1e5047161c7816bca25b413a18b")
add_versions("2.35.0", "010dd45e23e734d46f5891d70e268607a12cb9ab12503dda42f842d9db7e8857")
Expand All @@ -17,16 +20,28 @@ package("angelscript")
add_syslinks("pthread")
end

if on_check then
on_check("mingw", function (package)
if is_host("macosx") and package:is_arch("i386") and package:version():eq("2.37.0") then
assert(false, "package(angelscript 2.37.0): Unsupported version on mingw|i386")
end
end)
end

on_load("windows|x86", "windows|x64", "linux", "android", "msys", "mingw", function (package)
package:add("deps", "cmake")
end)

on_install("windows|x86", "windows|x64", "linux", "android", "msys", "mingw", function (package)
os.cd("angelscript/projects/cmake")
local configs = {}
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DAS_NO_EXCEPTIONS=" .. (package:config("exceptions") and "OFF" or "ON"))

if package:gitref() then
os.cd("sdk")
end
os.cd("angelscript/projects/cmake")
if package:is_plat("android") then
io.gsub("CMakeLists.txt", "set_property", "#set_property")
end
Expand Down

0 comments on commit 20149ac

Please sign in to comment.