gstreamer-rs/ci/install-gtk4.sh
2022-12-18 11:50:23 +00:00

17 lines
280 B
Bash

#! /bin/sh
set -eux
BRANCH=4.8.2
git clone https://gitlab.gnome.org/GNOME/gtk.git --branch $BRANCH --depth=1
cd gtk
meson build \
-D prefix=/usr/local \
-Dbuild-tests=false \
-Dwayland-protocols:tests=false
ninja -C build
ninja -C build install
cd ..
rm -rf gtk/