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

60 lines
1.2 KiB
Bash
Raw Normal View History

2020-09-04 16:45:25 +00:00
#!/bin/bash
LIBVPX_REPO="https://chromium.googlesource.com/webm/libvpx"
2021-02-19 16:08:32 +00:00
LIBVPX_COMMIT="02392eecccde436a76aca6c86a6fdf643e98eb38"
2020-09-04 16:45:25 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
2020-09-05 14:38:11 +00:00
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
2020-09-04 16:45:25 +00:00
}
ffbuild_dockerbuild() {
2020-09-05 20:34:23 +00:00
git-mini-clone "$LIBVPX_REPO" "$LIBVPX_COMMIT" libvpx
2020-09-04 16:45:25 +00:00
cd libvpx
local myconf=(
--disable-shared
--enable-static
--enable-pic
--disable-examples
--disable-tools
--disable-docs
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"
2020-09-04 16:45:25 +00:00
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}" || return -1
make -j$(nproc) || return -1
make install || return -1
cd ..
rm -rf libvpx
}
ffbuild_configure() {
echo --enable-libvpx
}
ffbuild_unconfigure() {
echo --disable-libvpx
}