From 44d5224dd81836b93774d4aa2d5961d22517c7c4 Mon Sep 17 00:00:00 2001 From: Peter Richmond <3448039+burdockcascade@users.noreply.github.com> Date: Thu, 3 Oct 2024 01:40:42 +0100 Subject: [PATCH] add rc4 (#5404) --- packages/l/luabridge3/xmake.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/l/luabridge3/xmake.lua b/packages/l/luabridge3/xmake.lua index 8705f7c2d..893cd4468 100644 --- a/packages/l/luabridge3/xmake.lua +++ b/packages/l/luabridge3/xmake.lua @@ -6,16 +6,18 @@ package("luabridge3") add_urls("https://github.com/kunitoki/LuaBridge3/archive/refs/tags/$(version).tar.gz", "https://github.com/kunitoki/LuaBridge3.git") + + add_versions("3.0-rc4", "7aaebb588a8271993de58e45c5b126af96f7779a12fea0dee2a115de4de1d75b") add_versions("3.0-rc3", "842a3803587c42568f6f4e65314f762fb7724c9c7c91efc930282921dbf9a79f") on_install(function (package) - os.cp("Source", path.join(package:installdir("include"), "luabridge3")) + os.cp("Source/LuaBridge", path.join(package:installdir("include"), "LuaBridge")) end) on_test(function (package) assert(package:check_cxxsnippets({test = [[ #define LUA_VERSION_NUM - #include + #include void test() { luabridge::ErrorCode errorCode; @@ -25,3 +27,5 @@ package("luabridge3") ]]}, {configs = {languages = "c++17"}})) end) + +