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.
32 lines
1.5 KiB
32 lines
1.5 KiB
package("xcb-proto") |
|
set_homepage("https://www.x.org/") |
|
set_description("X.Org: XML-XCB protocol descriptions for libxcb code generation") |
|
|
|
add_urls("https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-$(version).tar.gz", |
|
"https://xcb.freedesktop.org/dist/xcb-proto-$(version).tar.gz") |
|
add_versions("1.13", "0698e8f596e4c0dbad71d3dc754d95eb0edbb42df5464e0f782621216fa33ba7") |
|
add_versions("1.14", "1c3fa23d091fb5e4f1e9bf145a902161cec00d260fabf880a7a248b02ab27031") |
|
add_versions("1.14.1", "85cd21e9d9fbc341d0dbf11eace98d55d7db89fda724b0e598855fcddf0944fd") |
|
add_versions("1.16.0", "d9c7f010b1105fc3858bf07b5169b2dd8e7493c6652b1fe45f3321d874f291d7") |
|
|
|
if is_plat("macosx", "linux", "bsd") then |
|
add_deps("pkg-config", "python 3.x", {kind = "binary"}) |
|
end |
|
|
|
on_install("macosx", "linux", "bsd", function (package) |
|
local configs = {"--sysconfdir=" .. package:installdir("etc"), |
|
"--localstatedir=" .. package:installdir("var"), |
|
"--disable-silent-rules", |
|
"PYTHON=python3"} |
|
import("package.tools.autoconf").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
local envs |
|
if package:version():le("1.15") then |
|
envs = {PKG_CONFIG_PATH = path.join(package:installdir(), "lib", "pkgconfig")} |
|
else |
|
envs = {PKG_CONFIG_PATH = path.join(package:installdir(), "share", "pkgconfig")} |
|
end |
|
os.vrunv("pkg-config", {"--exists", "xcb-proto"}, {envs = envs}) |
|
end)
|
|
|