Browse Source

Auto-update haclog to v0.1.6 (#3414)

* Update haclog to v0.1.6

* try meson for cross

* Update xmake.lua

---------

Co-authored-by: star9029 <[email protected]>
ruki 1 year ago
parent
commit
090e9b173f
1 changed files with 16 additions and 4 deletions
  1. 16 4
      packages/h/haclog/xmake.lua

+ 16 - 4
packages/h/haclog/xmake.lua

@@ -6,19 +6,31 @@ package("haclog")
     add_urls("https://github.com/MuggleWei/haclog/archive/refs/tags/$(version).tar.gz",
              "https://github.com/MuggleWei/haclog.git")
 
+    add_versions("v0.1.6", "3afdb52d21b03a085291074612c39fab3ef056b6b32071693df4a2b60b9b6554")
     add_versions("v0.0.5", "789340ba87ac076e4c5559e1e6e0bf4f1e17f2e55c4845d0f9fc8ead8e6d7f5f")
 
     if is_plat("linux", "bsd") then
         add_syslinks("pthread")
     end
 
-    add_deps("cmake")
+    on_load(function (package)
+        if package:is_plat("cross") then
+            package:add("deps", "meson", "ninja")
+        else
+            package:add("deps", "cmake")
+        end
+    end)
 
     on_install("windows", "linux", "macosx", "android", "cross", function (package)
         local configs = {}
-        table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
-        table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
-        import("package.tools.cmake").install(package, configs)
+        if package:is_plat("cross") then
+            table.insert(configs, "-Ddefault_library=" .. (package:config("shared") and "shared" or "static"))
+            import("package.tools.meson").install(package, configs)
+        else
+            table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
+            table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
+            import("package.tools.cmake").install(package, configs)
+        end
     end)
 
     on_test(function (package)