Browse Source

Add portmidi v2.0.4 (#6495)

* Add portmidi v2.0.4

* Limit to !android and !iphoneos and !cross and !wasm

* wrap into config

* fixup

* try to support BSD

* limit bsd

* Improve readability on install
Saikari 6 months ago
parent
commit
883e42b021
1 changed files with 47 additions and 0 deletions
  1. 47 0
      packages/p/portmidi/xmake.lua

+ 47 - 0
packages/p/portmidi/xmake.lua

@@ -0,0 +1,47 @@
+package("portmidi")
+    set_homepage("https://github.com/PortMidi/portmidi")
+    set_description("portmidi is a cross-platform MIDI input/output library")
+
+    add_urls("https://github.com/PortMidi/portmidi/archive/refs/tags/$(version).tar.gz",
+             "https://github.com/PortMidi/portmidi.git")
+
+    add_versions("v2.0.4", "64893e823ae146cabd3ad7f9a9a9c5332746abe7847c557b99b2577afa8a607c")
+
+    if is_plat("linux", "bsd") then
+        add_configs("sndio", {description = "Use sndio", default = false, type = "boolean"})
+    end
+
+    if is_plat("windows", "mingw") then
+        add_syslinks("winmm", "advapi32")
+    elseif is_plat("linux", "bsd") then
+        add_syslinks("pthread")
+    elseif is_plat("macosx") then
+        add_frameworks("CoreAudio", "CoreFoundation", "CoreMIDI", "CoreServices")
+    end
+
+    add_deps("cmake")
+
+    if is_plat("linux") then
+        add_deps("alsa-lib")    
+    end
+
+    on_load("linux", "bsd", function (package)
+        if package:config("sndio") then
+            package:add("deps", "libsndio")
+        end
+    end)
+
+    on_install("windows", "linux", "macosx", "mingw",  function (package)
+        io.replace("pm_common/CMakeLists.txt", [[MSVC_RUNTIME_LIBRARY]], "", {plain = true})
+        io.replace("pm_common/CMakeLists.txt", [["MultiThreaded$<$<CONFIG:Debug>:Debug>${MSVCRT_DLL}"]], "", {plain = true})
+        io.replace("pm_win/pmwinmm.c", "midi->fill_offset_ptr = &(hdr->dwBytesRecorded);", "midi->fill_offset_ptr = (uint32_t *) &(hdr->dwBytesRecorded);", {plain = true})
+        local configs = {"-DBUILD_PORTMIDI_TESTS=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"))
+        table.insert(configs, "-DUSE_SNDIO=" .. (package:config("sndio") and "ON" or "OFF"))
+        import("package.tools.cmake").install(package, configs)
+    end)
+
+    on_test(function (package)
+        assert(package:has_cfuncs("Pm_Initialize", {includes = "portmidi.h"}))
+    end)