blob: fbeae7a36aacf3ba432abcfcf5a5bd5319dc32e3 (
plain)
1 # Description: Specifications of extended Wayland protocols
2 # URL: https://wayland.freedesktop.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: wayland
5
6 name=wayland-protocols
7 version=1.20
8 release=1
9 source=(https://wayland.freedesktop.org/releases/wayland-protocols-$version.tar.xz)
10
11 build() {
12 cd wayland-protocols-$version
13 ./configure --prefix=/usr \
14 --datadir=/usr/lib
15 make
16 make DESTDIR=$PKG install
17 }
|