2020-09-05 15:52:40 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-04-04 02:08:20 +00:00
|
|
|
RAV1E_REPO="https://github.com/xiph/rav1e.git"
|
|
|
|
RAV1E_COMMIT="d6e4b5c714f107f9cc6991d44927fd029ba53a72"
|
2020-09-05 15:52:40 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
[[ $TARGET == win32 ]] && return -1
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
2021-04-04 02:08:20 +00:00
|
|
|
git-mini-clone "$RAV1E_REPO" "$RAV1E_COMMIT" rav1e
|
|
|
|
cd rav1e
|
2020-09-05 15:52:40 +00:00
|
|
|
|
2021-05-13 00:17:17 +00:00
|
|
|
local myconf=(
|
2021-04-04 02:08:20 +00:00
|
|
|
--prefix="$FFBUILD_PREFIX" \
|
2021-04-04 20:58:11 +00:00
|
|
|
--library-type=staticlib \
|
2021-04-04 02:08:20 +00:00
|
|
|
--crt-static \
|
|
|
|
--release
|
2021-05-13 00:17:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if [[ -n "$FFBUILD_RUST_TARGET" ]]; then
|
|
|
|
myconf+=(
|
|
|
|
--target="$FFBUILD_RUST_TARGET"
|
|
|
|
)
|
|
|
|
fi
|
|
|
|
|
|
|
|
cargo cinstall "${myconf[@]}"
|
2020-09-05 15:52:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_configure() {
|
|
|
|
echo --enable-librav1e
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_unconfigure() {
|
|
|
|
echo --disable-librav1e
|
|
|
|
}
|