repo/wayland/wayland-protocols/build

14 lines
168 B
Plaintext
Raw Normal View History

2021-07-07 21:39:15 +00:00
#!/bin/sh -e
2023-03-02 14:40:00 +00:00
export DESTDIR="$1"
2023-11-18 20:51:12 +00:00
meson setup \
-Dprefix=/usr \
-Dbuildtype=release \
2021-09-15 19:54:26 +00:00
-Dtests=false \
2023-11-18 20:51:12 +00:00
output
2021-09-15 19:54:26 +00:00
ninja -C output
ninja -C output install
2021-07-07 21:39:15 +00:00