gstreamer-rs/ci/install-gtk4.sh

10 lines
186 B
Bash

set -eux
BRANCH=gtk-4-6
git clone https://gitlab.gnome.org/GNOME/gtk.git --branch $BRANCH --depth=1
cd gtk
meson build -D prefix=/usr/local
ninja -C build
ninja -C build install
cd ..