Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rw-r--r--ci/install-gtk4.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/ci/install-gtk4.sh b/ci/install-gtk4.sh
new file mode 100644
index 000000000..0fee20d70
--- /dev/null
+++ b/ci/install-gtk4.sh
@@ -0,0 +1,10 @@
+set -eux
+
+BRANCH=gtk-4-4
+
+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 ..