update x265, other minor updates

This commit is contained in:
aptalca 2023-06-09 14:16:31 -04:00
parent c854efe275
commit eb47d06570
No known key found for this signature in database
GPG Key ID: BE36CFFB9FD85548
2 changed files with 4 additions and 7 deletions

View File

@ -34,7 +34,7 @@ ENV \
THEORA=1.1.1 \
VORBIS=1.3.7 \
VPX=1.13.0 \
X265=3.4 \
X265=3.5 \
XVID=1.3.7
RUN \
@ -232,7 +232,7 @@ RUN \
RUN \
echo "**** compiling libdrm ****" && \
cd /tmp/libdrm && \
meson \
meson setup \
-Dvalgrind=disabled \
. build && \
ninja -C build && \
@ -273,7 +273,7 @@ RUN \
RUN \
echo "**** compiling libvmaf ****" && \
cd /tmp/vmaf/libvmaf && \
meson build --buildtype release && \
meson setup build --buildtype release && \
ninja -vC build && \
ninja -vC build install
RUN \
@ -432,7 +432,7 @@ RUN \
echo "**** grabbing x265 ****" && \
mkdir -p /tmp/x265 && \
curl -Lf \
http://anduin.linuxfromscratch.org/BLFS/x265/x265_${X265}.tar.gz | \
https://bitbucket.org/multicoreware/x265_git/downloads/x265_${X265}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/x265
RUN \
echo "**** compiling x265 ****" && \

View File

@ -349,9 +349,6 @@ RUN \
--branch ${X265} \
--depth 1 https://bitbucket.org/multicoreware/x265_git.git \
/tmp/x265
#curl -Lf \
# https://bitbucket.org/multicoreware/x265_git/downloads/x265_${X265}.tar.gz | \
# tar -zx --strip-components=1 -C /tmp/x265
RUN \
echo "**** compiling x265 ****" && \
cd /tmp/x265/build/linux && \