2020-10-11 12:31:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
XAVS2_REPO="https://github.com/pkuvcl/xavs2.git"
|
|
|
|
XAVS2_COMMIT="eae1e8b9d12468059bdd7dee893508e470fa83d8"
|
|
|
|
|
|
|
|
ffbuild_enabled() {
|
2021-06-20 19:59:48 +00:00
|
|
|
[[ $VARIANT == lgpl* ]] && return -1
|
2020-10-19 22:56:50 +00:00
|
|
|
[[ $TARGET == win32 ]] && return -1
|
2020-10-11 12:31:19 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
|
|
|
git clone "$XAVS2_REPO" xavs2
|
|
|
|
cd xavs2
|
|
|
|
git checkout "$XAVS2_COMMIT"
|
|
|
|
cd build/linux
|
|
|
|
|
|
|
|
local myconf=(
|
|
|
|
--disable-cli
|
|
|
|
--enable-static
|
|
|
|
--enable-pic
|
|
|
|
--disable-avs
|
|
|
|
--disable-swscale
|
|
|
|
--disable-lavf
|
|
|
|
--disable-ffms
|
|
|
|
--disable-gpac
|
|
|
|
--disable-lsmash
|
2021-05-13 14:20:32 +00:00
|
|
|
--extra-asflags="-w-macro-params-legacy"
|
2020-10-11 12:31:19 +00:00
|
|
|
--prefix="$FFBUILD_PREFIX"
|
|
|
|
)
|
|
|
|
|
2021-05-14 02:52:29 +00:00
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
2020-10-11 12:31:19 +00:00
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
--cross-prefix="$FFBUILD_CROSS_PREFIX"
|
|
|
|
)
|
2021-05-14 02:52:29 +00:00
|
|
|
else
|
2020-10-11 12:31:19 +00:00
|
|
|
echo "Unknown target"
|
|
|
|
return -1
|
|
|
|
fi
|
|
|
|
|
2021-04-04 21:20:31 +00:00
|
|
|
./configure "${myconf[@]}"
|
|
|
|
make -j$(nproc)
|
|
|
|
make install
|
2020-10-11 12:31:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_configure() {
|
|
|
|
echo --enable-libxavs2
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_unconfigure() {
|
|
|
|
echo --disable-libxavs2
|
|
|
|
}
|