mirror of
https://gitlab.freedesktop.org/wayland/wayland-protocols.git
synced 2025-12-20 02:20:12 +01:00
14 lines
386 B
Bash
Executable file
14 lines
386 B
Bash
Executable file
#!/bin/sh -eux
|
|
|
|
# Note: don't forget to bump FDO_DISTRIBUTION_TAG when editing this file!
|
|
|
|
git clone --branch 1.23.1 --depth=1 https://gitlab.freedesktop.org/wayland/wayland
|
|
cd wayland/
|
|
git show -s HEAD
|
|
meson build/ -Dtests=false -Ddocumentation=false
|
|
ninja -j${FDO_CI_CONCURRENT:-4} -C build/ install
|
|
cd ..
|
|
rm -rf wayland/
|
|
|
|
echo "/usr/local/lib" >/etc/ld.so.conf.d/local.conf
|
|
ldconfig
|