mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-04 16:49:51 +00:00
d245056e7b
This is a prerequisite to porting the examples to gtk4
10 lines
186 B
Bash
10 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 ..
|