mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-23 03:50:59 +00:00
11 lines
186 B
Bash
11 lines
186 B
Bash
|
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 ..
|