fix ordering

This commit is contained in:
aptalca 2024-08-17 13:24:53 -04:00 committed by GitHub
parent 8f11643416
commit 21f618c5e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -335,12 +335,6 @@ RUN \
cd /tmp/rav1e && \
cargo cinstall --release && \
strip -d /usr/local/lib/librav1e.so
RUN \
echo "**** grabbing SVT-AV1 ****" && \
mkdir -p /tmp/svt-av1 && \
curl -Lf \
https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v${SVTAV1}/SVT-AV1-v${SVTAV1}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/svt-av1
RUN \
echo "**** grabbing rist ****" && \
mkdir -p /tmp/rist && \
@ -375,6 +369,12 @@ RUN \
-DBUILD_SHARED_LIBS:BOOL=on .. && \
make && \
make install
RUN \
echo "**** grabbing SVT-AV1 ****" && \
mkdir -p /tmp/svt-av1 && \
curl -Lf \
https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v${SVTAV1}/SVT-AV1-v${SVTAV1}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/svt-av1
RUN \
echo "**** compiling SVT-AV1 ****" && \
cd /tmp/svt-av1/Build && \