mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
12 lines
288 B
Bash
12 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
|