FFmpeg-Builds/scripts.d/50-libvpx.sh

65 lines
1.4 KiB
Bash
Raw Normal View History

2020-09-04 16:45:25 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://chromium.googlesource.com/webm/libvpx"
2023-05-29 12:10:36 +00:00
SCRIPT_COMMIT="ad5677eafceac4eccf7a7fd506a4e1f081cea22d"
2020-09-04 16:45:25 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
2020-09-04 16:45:25 +00:00
local myconf=(
--disable-shared
--enable-static
--enable-pic
--disable-examples
--disable-tools
--disable-docs
2022-10-30 20:42:22 +00:00
--disable-unit-tests
2020-10-27 14:14:07 +00:00
--enable-vp9-highbitdepth
2020-09-04 16:45:25 +00:00
--prefix="$FFBUILD_PREFIX"
)
2020-09-27 20:10:05 +00:00
if [[ $TARGET == win64 ]]; then
2020-09-04 16:45:25 +00:00
myconf+=(
--target=x86_64-win64-gcc
)
export CROSS="$FFBUILD_CROSS_PREFIX"
2020-09-27 20:10:05 +00:00
elif [[ $TARGET == win32 ]]; then
myconf+=(
--target=x86-win32-gcc
)
export CROSS="$FFBUILD_CROSS_PREFIX"
2022-05-09 22:15:31 +00:00
elif [[ $TARGET == linux64 ]]; then
myconf+=(
--target=x86_64-linux-gcc
)
export CROSS="$FFBUILD_CROSS_PREFIX"
2022-05-09 22:15:31 +00:00
elif [[ $TARGET == linuxarm64 ]]; then
myconf+=(
--target=arm64-linux-gcc
)
export CROSS="$FFBUILD_CROSS_PREFIX"
else
2020-09-04 16:45:25 +00:00
echo "Unknown target"
return -1
fi
2021-04-04 21:20:31 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
# Work around strip breaking LTO symbol index
"$RANLIB" "$FFBUILD_PREFIX"/lib/libvpx.a
2020-09-04 16:45:25 +00:00
}
ffbuild_configure() {
echo --enable-libvpx
}
ffbuild_unconfigure() {
echo --disable-libvpx
}