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.
31 lines
1.2 KiB
31 lines
1.2 KiB
3 years ago
|
package("libde265")
|
||
|
|
||
|
set_homepage("https://www.libde265.org/")
|
||
|
set_description("Open h.265 video codec implementation.")
|
||
|
set_license("LGPL-3.0")
|
||
|
|
||
|
add_urls("https://github.com/strukturag/libde265/releases/download/v$(version)/libde265-$(version).tar.gz")
|
||
|
add_versions("1.0.8", "24c791dd334fa521762320ff54f0febfd3c09fc978880a8c5fbc40a88f21d905")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
if is_plat("linux") then
|
||
|
add_syslinks("pthread")
|
||
|
end
|
||
|
on_load("windows", function (package)
|
||
|
if not package:config("shared") then
|
||
|
package:add("defines", "LIBDE265_STATIC_BUILD")
|
||
|
end
|
||
|
end)
|
||
|
|
||
|
on_install("windows", "macosx", "linux", "mingw", "android", function (package)
|
||
|
local configs = {"-DENABLE_SDL=OFF"}
|
||
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
|
||
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
|
||
|
table.insert(configs, "-DDISABLE_SSE=" .. (package:is_arch("x86", "x64", "x86_64") and "OFF" or "ON"))
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("de265_new_decoder", {includes = "libde265/de265.h"}))
|
||
|
end)
|