Browse Source

libyuv: add package (#2771)

* srtp: add package

* Update xmake.lua

* Update xmake.lua

* Update xmake.lua

* libyuv: add package

* Update xmake.lua

* Update xmake.lua

---------

Co-authored-by: ruki <[email protected]>
KkemChen 1 year ago
parent
commit
e85c073a60
1 changed files with 30 additions and 0 deletions
  1. 30 0
      packages/l/libyuv/xmake.lua

+ 30 - 0
packages/l/libyuv/xmake.lua

@@ -0,0 +1,30 @@
+package("libyuv")
+
+    set_homepage("https://chromium.googlesource.com/libyuv/libyuv/")
+    set_description("libyuv is an open source project that includes YUV scaling and conversion functionality.")
+    set_license("BSD-3-Clause")
+
+    set_urls("https://chromium.googlesource.com/libyuv/libyuv.git")
+    add_versions("2023.10.27", "31e1d6f896615342d5d5b6bde8f7b50b3fd698dc")
+
+    add_deps("cmake")
+
+    on_install("windows", "linux", "macosx", "android", "cross", "bsd", "mingw", function (package)
+        local configs = {"-DTEST=OFF"}
+        table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
+        
+        io.replace("CMakeLists.txt", "INSTALL ( PROGRAMS ${CMAKE_BINARY_DIR}/yuvconvert			DESTINATION bin )", "", {plain = true})
+        import("package.tools.cmake").install(package, configs)
+        
+        if package:is_plat("macosx", "linux") then
+            if package:config("shared") then 
+                os.tryrm(package:installdir("lib", "*.a"))
+            else 
+                os.tryrm(package:installdir("lib", "*.so"))
+            end
+        end
+    end)
+
+    on_test(function (package)
+        assert(package:has_cfuncs("I420Rotate", {includes = "libyuv/rotate.h"}))
+    end)