blob: 764fa295782058831f06ca6b5b759083a29b201f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
MAKEDEPS="meson ninja"
DEPS="wayland"
PKG_VER=1.25
SOURCE=https://wayland.freedesktop.org/releases/wayland-protocols-$PKG_VER.tar.xz
DESC="Specifications of extended Wayland protocols"
build () {
mkdir build &&
cd build &&
meson --prefix=/usr --buildtype=release &&
ninja
}
package () {
DESTDIR=$PKG_DEST ninja install
}
|