contrib/wayland/Pkgfile

22 lines
568 B
Plaintext
Raw Normal View History

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
# Depends on: expat libffi libxml2 meson ninja
2019-08-04 16:15:58 +02:00
name=wayland
2021-12-11 13:13:40 +01:00
version=1.20.0
2022-01-11 15:32:15 +01:00
release=2
2019-08-04 16:15:58 +02:00
source=(https://wayland.freedesktop.org/releases/$name-$version.tar.xz)
build() {
2020-11-03 21:57:32 +01: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 21:57:32 +01:00
meson compile -C build
DESTDIR=$PKG meson install -C build
2019-08-04 16:15:58 +02:00
}