瀏覽代碼

libdispatch: add package (#8181)

* libdispatch: add package

* fix url

* add check

* fix macos

* fix: correct macOS platform check in libdispatch installation script

* Update xmake.lua

* Update xmake.lua
star9029 1 月之前
父節點
當前提交
a8b92b6141
共有 1 個文件被更改,包括 62 次插入0 次删除
  1. 62 0
      packages/l/libdispatch/xmake.lua

+ 62 - 0
packages/l/libdispatch/xmake.lua

@@ -0,0 +1,62 @@
+package("libdispatch")
+    set_homepage("swift.org")
+    set_description("The libdispatch Project, (a.k.a. Grand Central Dispatch), for concurrency on multicore hardware")
+    set_license("Apache-2.0")
+
+    add_urls("https://github.com/swiftlang/swift-corelibs-libdispatch/archive/refs/tags/swift-$(version)-RELEASE.tar.gz")
+    add_urls("https://github.com/swiftlang/swift-corelibs-libdispatch.git", {alias = "git"})
+
+    add_versions("6.1.1", "6fc6f8b1767a1348e1d960647b2bfbc52fd7074b7aeab97bd0f4b21af58baa47")
+
+    add_versions("git:6.1.1", "swift-6.1.1-RELEASE")
+
+    add_links("dispatch", "BlocksRuntime")
+
+    if is_plat("windows", "mingw") then
+        add_syslinks("shlwapi", "ws2_32", "winmm", "synchronization")
+    elseif is_plat("linux", "bsd") then
+        add_syslinks("pthread", "rt")
+    end
+
+    add_deps("cmake")
+    
+    on_check(function (package)
+        if package:is_plat("windows") then
+            if not package:has_tool("cxx", "clang_cl") then
+                raise("package(libdispatch) unsupported msvc && clang toolchain, you can use clang-cl toolchain\nadd_requires(\"libdispatch\", {configs = {toolchains = \"clang-cl\"}}))")
+            end
+        else
+            if not package:has_tool("cxx", "clang", "clangxx") then
+                raise("package(libdispatch) unsupported gcc toolchain, you can use clang toolchain\nadd_requires(\"libdispatch\", {configs = {toolchains = \"clang\"}}))")
+            end
+        end
+
+        if package:is_plat("android") then
+            local ndk = package:toolchain("ndk"):config("ndkver")
+            assert(ndk and tonumber(ndk) > 22, "package(libdispatch) require ndk version > 22")
+        end
+    end)
+
+    on_install("!bsd and !macosx and !iphoneos", function (package)
+        if not package:config("shared") then
+            package:add("defines", "dispatch_STATIC")
+            if not package:is_plat("macosx") then
+                package:add("defines", "BlocksRuntime_STATIC")
+            end
+        end
+
+        io.replace("CMakeLists.txt", "set(CMAKE_POSITION_INDEPENDENT_CODE YES)", "", {plain = true})
+        io.replace("cmake/modules/DispatchCompilerWarnings.cmake", "-Werror", "", {plain = true})
+        if package:is_plat("macosx") then
+            io.replace("src/CMakeLists.txt", "BlocksRuntime::BlocksRuntime", "", {plain = true})
+        end
+
+        local configs = {"-DBUILD_TESTING=OFF"}
+        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)
+
+    on_test(function (package)
+        assert(package:has_cfuncs("dispatch_get_main_queue", {includes = "dispatch/dispatch.h"}))
+    end)