mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-12 05:11:32 +00:00
10 lines
182 B
Bash
10 lines
182 B
Bash
set -e
|
|
|
|
RELEASE=0.8.0
|
|
|
|
git clone https://code.videolan.org/videolan/dav1d.git --branch $RELEASE
|
|
cd dav1d
|
|
meson build -D prefix=/usr/local
|
|
ninja -C build
|
|
ninja -C build install
|
|
cd ..
|