mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
11 lines
288 B
Bash
11 lines
288 B
Bash
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
# Install gdk-pixbuf manually as fedora 34 doesn't build the docs/.devhelp2
|
|
git clone --branch gdk-pixbuf-2-40 https://gitlab.gnome.org/GNOME/gdk-pixbuf.git
|
|
cd gdk-pixbuf
|
|
meson setup _build --prefix=/usr -Ddocs=true
|
|
meson install -C _build
|
|
cd ..
|
|
rm -rf gdk-pixbuf
|