51 lines
1 KiB
Bash
Executable file
51 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
LIBVPX_REPO="https://chromium.googlesource.com/webm/libvpx"
|
|
LIBVPX_COMMIT="8b3e575a45792fe490b5bc08c3fe08f01553756b"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$LIBVPX_REPO" "$LIBVPX_COMMIT" libvpx
|
|
cd libvpx
|
|
|
|
local myconf=(
|
|
--disable-shared
|
|
--enable-static
|
|
--enable-pic
|
|
--disable-examples
|
|
--disable-tools
|
|
--disable-docs
|
|
--enable-vp9-highbitdepth
|
|
--prefix="$FFBUILD_PREFIX"
|
|
)
|
|
|
|
if [[ $TARGET == win64 ]]; then
|
|
myconf+=(
|
|
--target=x86_64-win64-gcc
|
|
)
|
|
export CROSS="$FFBUILD_CROSS_PREFIX"
|
|
elif [[ $TARGET == win32 ]]; then
|
|
myconf+=(
|
|
--target=x86-win32-gcc
|
|
)
|
|
export CROSS="$FFBUILD_CROSS_PREFIX"
|
|
else
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
./configure "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-libvpx
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-libvpx
|
|
}
|