gstreamer-rs/ci/install-gtk4.sh
2022-11-03 17:06:53 +02:00

15 lines
261 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/