2019-08-04 16:15:58 +02:00
|
|
|
# Description: Wayland is intended as a simpler replacement for X
|
|
|
|
# URL: https://wayland.freedesktop.org/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-02-15 01:43:11 +01:00
|
|
|
# Depends on: expat libffi libxml2 meson ninja
|
2019-08-04 16:15:58 +02:00
|
|
|
|
|
|
|
name=wayland
|
2023-04-05 19:48:12 +02:00
|
|
|
version=1.22.0
|
2019-08-04 16:15:58 +02:00
|
|
|
release=1
|
2022-07-02 10:03:33 +02:00
|
|
|
source=(https://gitlab.freedesktop.org/wayland/wayland/-/releases/$version/downloads/wayland-$version.tar.xz)
|
2019-08-04 16:15:58 +02:00
|
|
|
|
|
|
|
build() {
|
2020-11-03 20:57:32 +00:00
|
|
|
meson setup $name-$version build \
|
|
|
|
--prefix=/usr \
|
|
|
|
--buildtype=plain \
|
2021-12-11 13:13:40 +01:00
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true \
|
|
|
|
-D documentation=false
|
2020-11-03 20:57:32 +00:00
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2019-08-04 16:15:58 +02:00
|
|
|
}
|