blob: f022c1697d4d54601b6bb4385d0a2a51c7a56ded (
plain)
1 # Description: Wayland is intended as a simpler replacement for X
2 # URL: https://wayland.freedesktop.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: expat libffi libxml2 meson ninja
5
6 name=wayland
7 version=1.21.0
8 release=1
9 source=(https://gitlab.freedesktop.org/wayland/wayland/-/releases/$version/downloads/wayland-$version.tar.xz)
10
11 build() {
12 meson setup $name-$version build \
13 --prefix=/usr \
14 --buildtype=plain \
15 --wrap-mode nodownload \
16 -D b_lto=true \
17 -D b_pie=true \
18 -D documentation=false
19 meson compile -C build
20 DESTDIR=$PKG meson install -C build
21 }
|