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.3 KiB
31 lines
1.3 KiB
package("theora") |
|
set_homepage("https://theora.org/") |
|
set_description("Reference implementation of the Theora video compression format.") |
|
set_license("BSD-3-Clause") |
|
|
|
add_urls("https://gitlab.xiph.org/xiph/theora.git", |
|
"https://gitlab.xiph.org/xiph/theora/-/archive/v$(version)/theora-$(version).tar.gz", |
|
"https://github.com/xiph/theora.git") |
|
|
|
add_versions("v1.0", "bfaaa9dc04b57b44a3152c2132372c72a20d69e5fc6c9cc8f651cc1bc2434006") |
|
add_versions("v1.1.0", "726e6e157f711011f7377773ce5ee233f7b73a425bf4ad192e4f8a8a71cf21d6") |
|
add_versions("v1.1.1", "316ab9438310cf65c38aa7f5e25986b9d27e9aec771668260c733817ecf26dff") |
|
|
|
add_deps("libogg") |
|
|
|
if is_plat("wasm") then |
|
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true}) |
|
end |
|
|
|
on_install(function (package) |
|
os.cp(path.join(package:scriptdir(), "port", "xmake.lua"), "xmake.lua") |
|
local configs = {} |
|
if package:config("shared") then |
|
configs.kind = "shared" |
|
end |
|
import("package.tools.xmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("theora_encode_init", {includes = "theora/theora.h"})) |
|
end)
|
|
|