# Description: A computer display server protocol # URL: https://wayland.freedesktop.org/ # Maintainer: KRAK3N Team, extra ports at krak3n dot my # Depends on: meson libxml2 name=wayland version=1.24.0 release=1 source=(https://gitlab.freedesktop.org/${name}/${name}/-/releases/${version}/downloads/${name}-${version}.tar.xz) build() { cd ${name}-${version} meson setup \ -Dprefix=/usr \ -Dlibdir=/usr/lib \ -Dincludedir=/usr/include \ -Ddatadir=/usr/share \ -Dmandir=/usr/share/man \ -Dinfodir=/usr/share/info \ -Dlocaledir=/usr/share/locale \ -Dsysconfdir=/etc \ -Dlocalstatedir=/var \ -Dsharedstatedir=/var/lib \ -Dbuildtype=plain \ -Dauto_features=auto \ -Dwrap_mode=nodownload \ -Db_lto=true \ -Db_pie=true \ -Ddocumentation=false \ build ninja -C build DESTDIR=$PKG meson install -C build }