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

52 lines
896 B
Bash
Raw Normal View History

2020-09-05 14:38:09 +00:00
#!/bin/bash
MFX_REPO="https://github.com/lu-zero/mfx_dispatch.git"
2020-09-27 14:17:47 +00:00
MFX_COMMIT="2cd279f1e8a277c843025c8713c6ed3b4c42b032"
2020-09-05 14:38:09 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
}
ffbuild_dockerbuild() {
2020-09-05 20:34:23 +00:00
git-mini-clone "$MFX_REPO" "$MFX_COMMIT" mfx
2020-09-05 14:38:09 +00:00
cd mfx
autoreconf -i || return -1
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
)
if [[ $TARGET == win* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}" || return -1
make -j$(nproc) || return -1
make install || return -1
cd ..
rm -rf mfx
}
ffbuild_configure() {
echo --enable-libmfx
}
ffbuild_unconfigure() {
echo --disable-libmfx
}