blob: a2ceaaeaa1f5e637395b9b7098397a51ca07af5c (
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.19.0
8 release=1
9 source=(https://wayland.freedesktop.org/releases/$name-$version.tar.xz)
10
11 build() {
12 meson setup $name-$version build \
13 --prefix=/usr \
14 --buildtype=plain \
15 -Ddocumentation=false
16 meson compile -C build
17 DESTDIR=$PKG meson install -C build
18 }
|