mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-05-02 23:54:40 +02:00
40 lines
741 B
Bash
Executable File
40 lines
741 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/xiph/rav1e.git"
|
|
SCRIPT_COMMIT="182bbff8c4398af56123977ac91f1f3f589fbd85"
|
|
|
|
ffbuild_enabled() {
|
|
[[ $TARGET == win32 ]] && return -1
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" rav1e
|
|
cd rav1e
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX" \
|
|
--library-type=staticlib \
|
|
--crt-static \
|
|
--release
|
|
)
|
|
|
|
if [[ -n "$FFBUILD_RUST_TARGET" ]]; then
|
|
myconf+=(
|
|
--target="$FFBUILD_RUST_TARGET"
|
|
)
|
|
fi
|
|
|
|
export CC="${FFBUILD_CROSS_PREFIX}gcc"
|
|
|
|
cargo cinstall "${myconf[@]}"
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-librav1e
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-librav1e
|
|
}
|