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.
35 lines
1.3 KiB
35 lines
1.3 KiB
package("libhubbub") |
|
set_homepage("https://www.netsurf-browser.org/projects/libhubbub") |
|
set_description("Hubbub is an HTML5 compliant parsing library") |
|
set_license("MIT") |
|
|
|
set_urls("https://source.netsurf-browser.org/libhubbub.git/snapshot/libhubbub-release/$(version).tar.bz2", |
|
"https://git.netsurf-browser.org/libhubbub.git") |
|
|
|
add_versions("0.3.8", "570f2aef99071e0c24d16444b74884d611f46b264bbfb6e314039c9786e87160") |
|
|
|
add_patches("0.3.8", "patches/0.3.8/treebuilder.patch", "c966decf79bcd0bbca4fe6c4ccdba776b9b9b3551a5956a894f14a55ec21eb72") |
|
|
|
add_deps("libparserutils") |
|
if is_plat("windows") then |
|
add_deps("strings_h", {private = true}) |
|
end |
|
|
|
on_load(function (package) |
|
if not package:is_precompiled() then |
|
package:add("deps", "gperf") |
|
if is_subhost("windows") then |
|
package:add("deps", "strawberry-perl") |
|
end |
|
end |
|
end) |
|
|
|
on_install(function (package) |
|
os.cd(package:version_str()) |
|
os.cp(path.join(package:scriptdir(), "port", "xmake.lua"), "xmake.lua") |
|
import("package.tools.xmake").install(package) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("hubbub_error_to_string", {includes = "hubbub/hubbub.h"})) |
|
end)
|
|
|