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.
59 lines
3.1 KiB
59 lines
3.1 KiB
package("wayland") |
|
set_homepage("https://wayland.freedesktop.org/") |
|
set_description("Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol.") |
|
set_license("MIT") |
|
|
|
add_urls("https://wayland.freedesktop.org/releases/wayland-$(version).tar.xz") |
|
add_versions("1.18.0", "4675a79f091020817a98fd0484e7208c8762242266967f55a67776936c2e294d") |
|
add_versions("1.19.0", "baccd902300d354581cd5ad3cc49daa4921d55fb416a5883e218750fef166d15") |
|
|
|
add_resources("1.18.0", "protocols", "https://wayland.freedesktop.org/releases/wayland-protocols-1.20.tar.xz", "9782b7a1a863d82d7c92478497d13c758f52e7da4f197aa16443f73de77e4de7") |
|
add_resources("1.19.0", "protocols", "https://wayland.freedesktop.org/releases/wayland-protocols-1.21.tar.xz", "b99945842d8be18817c26ee77dafa157883af89268e15f4a5a1a1ff3ffa4cde5") |
|
|
|
if is_plat("linux") then |
|
add_extsources("apt::libwayland-dev", "pacman::wayland") |
|
end |
|
|
|
add_deps("meson", "ninja >=1.8.2", "libxml2", "libffi", "expat", "bison", "pkg-config") |
|
|
|
on_install("linux", function (package) |
|
-- imports |
|
import("package.tools.meson") |
|
import("package.tools.autoconf") |
|
import("lib.detect.find_file") |
|
|
|
-- set environment variables |
|
package:addenv("PATH", "bin") |
|
local LD_LIBRARY_PATH = package:installdir("lib") |
|
local PKG_CONFIG_PATH = path.joinenv({package:installdir("lib", "pkgconfig"), package:installdir("share", "pkgconfig")}) |
|
local ACLOCAL_PATH = package:installdir("share", "aclocal") |
|
local ACLOCAL = "aclocal -I " .. package:installdir("share", "aclocal") |
|
os.mkdir(package:installdir("share", "aclocal")) |
|
|
|
-- build wayland |
|
local configs = {"-Ddocumentation=false", "-Dc_link_args=-lm"} |
|
table.insert(configs, "--libdir=lib") |
|
local envs = meson.buildenvs(package) |
|
envs.LD_LIBRARY_PATH = path.joinenv(table.join(LD_LIBRARY_PATH, envs.LD_LIBRARY_PATH)) |
|
envs.PKG_CONFIG_PATH = path.joinenv(table.join(PKG_CONFIG_PATH, envs.PKG_CONFIG_PATH)) |
|
envs.ACLOCAL_PATH = path.joinenv(table.join(ACLOCAL_PATH, envs.ACLOCAL_PATH)) |
|
envs.ACLOCAL = ACLOCAL |
|
meson.install(package, configs, {envs = envs}) |
|
|
|
-- install wayland-protocols |
|
local protocol = assert(package:resourcedir("protocols"), "wayland-protocols not found!") |
|
local configfile = find_file("configure.ac", path.join(protocol, "**")) |
|
os.cd(path.directory(configfile)) |
|
|
|
envs = autoconf.buildenvs(package) |
|
envs.LD_LIBRARY_PATH = path.joinenv(table.join(LD_LIBRARY_PATH, envs.LD_LIBRARY_PATH)) |
|
envs.PKG_CONFIG_PATH = path.joinenv(table.join(PKG_CONFIG_PATH, envs.PKG_CONFIG_PATH)) |
|
envs.ACLOCAL_PATH = path.joinenv(table.join(ACLOCAL_PATH, envs.ACLOCAL_PATH)) |
|
envs.ACLOCAL = ACLOCAL |
|
autoconf.install(package, {}, {envs = envs}) |
|
end) |
|
|
|
on_test(function (package) |
|
os.vrun("wayland-scanner --version") |
|
assert(package:has_cfuncs("wl_list_init", {includes = "wayland-util.h"})) |
|
end)
|
|
|