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.
61 lines
2.6 KiB
61 lines
2.6 KiB
package("openh264") |
|
set_homepage("http://www.openh264.org/") |
|
set_description("OpenH264 is a codec library which supports H.264 encoding and decoding.") |
|
set_license("BSD-2-Clause") |
|
|
|
set_urls("https://github.com/cisco/openh264/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/cisco/openh264.git") |
|
|
|
add_versions("v2.4.1", "8ffbe944e74043d0d3fb53d4a2a14c94de71f58dbea6a06d0dc92369542958ea") |
|
add_versions("v2.1.1", "af173e90fce65f80722fa894e1af0d6b07572292e76de7b65273df4c0a8be678") |
|
|
|
if is_plat("linux") then |
|
add_syslinks("pthread", "rt") |
|
end |
|
|
|
add_deps("meson", "ninja", "nasm") |
|
|
|
on_load("windows", function (package) |
|
if package:is_plat("windows") and package:is_arch("arm.*") and (not package:is_precompiled()) then |
|
package:add("deps", "strawberry-perl") |
|
end |
|
end) |
|
|
|
on_install("windows", "linux", function (package) |
|
if package:version():ge("2.4.1") then |
|
import("package.tools.meson") |
|
|
|
local opt = {} |
|
opt.envs = meson.buildenvs(package) |
|
-- add gas-preprocessor to PATH |
|
if package:is_plat("windows") and package:is_arch("arm.*") then |
|
opt.envs.PATH = path.join(os.programdir(), "scripts") .. path.envsep() .. opt.envs.PATH |
|
end |
|
|
|
if package:is_plat("linux") and package:has_tool("cc", "clang", "clangxx") then |
|
opt.ldflags = "-lstdc++" |
|
opt.shflags = "-lstdc++" |
|
end |
|
|
|
local configs = {"-Dtests=disabled"} |
|
table.insert(configs, "-Ddefault_library=" .. (package:config("shared") and "shared" or "static")) |
|
meson.install(package, configs, opt) |
|
else |
|
import("package.tools.meson").build(package, {"-Dtests=disabled"}, {buildir = "out"}) |
|
import("package.tools.ninja").install(package, {}, {buildir = "out"}) |
|
if package:config("shared") then |
|
os.tryrm(path.join(package:installdir("lib"), "libopenh264.a")) |
|
else |
|
os.tryrm(path.join(package:installdir("lib"), "libopenh264.so*")) |
|
os.tryrm(path.join(package:installdir("lib"), "openh264.lib")) |
|
os.tryrm(path.join(package:installdir("bin"), "openh264-*.dll")) |
|
end |
|
if package:is_plat("windows") then |
|
os.trymv(path.join(package:installdir("lib"), "libopenh264.a"), path.join(package:installdir("lib"), "openh264.lib")) |
|
end |
|
end |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cxxfuncs("WelsGetCodecVersion", {includes = "wels/codec_api.h"})) |
|
end)
|
|
|