mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-10-31 22:59:14 +00:00
a53069208b
No need to have two layers of CI images for these few additional packages. It only complicates the whole setup. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1298>
11 lines
195 B
Bash
11 lines
195 B
Bash
set -e
|
|
|
|
RELEASE=1.1.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 ..
|
|
rm -rf dav1d
|