package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.7 KiB
66 lines
2.7 KiB
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") |
|
|
|
add_urls("https://chromium.googlesource.com/libyuv/libyuv.git", |
|
"https://github.com/lemenkov/libyuv.git") |
|
|
|
add_urls("https://github.com/lemenkov/libyuv/archive/$(version).tar.gz", { |
|
version = function (version) |
|
-- Versions from LIBYUV_VERSION definition in include/libyuv/version.h |
|
-- Pay attention to package commits incrementing this definition |
|
local table = { |
|
["1891"] = "611806a1559b92c97961f51c78805d8d9d528c08", |
|
} |
|
return table[tostring(version)] |
|
end}) |
|
|
|
add_versions("1891", "a8dddc6f45d6987cd3c08e00824792f3c72651fde29f475f572ee2292c03761f") |
|
|
|
add_patches("1891", "patches/1891/cmake.patch", "87086566b2180f65ff3d5ef9db7c59a6e51e2592aeeb787e45305beb4cf9d30d") |
|
|
|
add_configs("jpeg", {description = "Build with JPEG.", default = false, type = "boolean"}) |
|
add_configs("tools", {description = "Build tools", default = false, type = "boolean"}) |
|
|
|
add_deps("cmake") |
|
|
|
if is_plat("linux", "bsd") then |
|
add_syslinks("m") |
|
end |
|
|
|
if on_check then |
|
on_check("android", function (package) |
|
local ndk = package:toolchain("ndk"):config("ndkver") |
|
assert(ndk and tonumber(ndk) > 22, "package(libyuv): need ndk version > 22") |
|
end) |
|
end |
|
|
|
on_load(function (package) |
|
if package:config("jpeg") then |
|
package:add("deps", "libjpeg") |
|
end |
|
|
|
if package:config("shared") then |
|
package:add("defines", "LIBYUV_USING_SHARED_LIBRARY") |
|
end |
|
end) |
|
|
|
on_install("!cross", function (package) |
|
if package:is_plat("iphoneos") then |
|
io.replace("CMakeLists.txt", |
|
[[STRING(TOLOWER "${CMAKE_SYSTEM_PROCESSOR}" arch_lowercase)]], |
|
[[set(arch_lowercase "]] .. package:arch() .. [[")]], {plain = true}) |
|
end |
|
|
|
local configs = {"-DCMAKE_CXX_STANDARD=14"} |
|
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, "-DLIBYUV_WITH_JPEG=" .. (package:config("jpeg") and "ON" or "OFF")) |
|
table.insert(configs, "-DBUILD_TOOLS=" .. (package:config("tools") and "ON" or "OFF")) |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("I420Rotate", {includes = "libyuv/rotate.h"})) |
|
end)
|
|
|