Add libmfx
This commit is contained in:
parent
a11c5b3ff7
commit
3775b95e58
1 changed files with 52 additions and 0 deletions
52
scripts.d/50-mfx.sh
Executable file
52
scripts.d/50-mfx.sh
Executable file
|
@ -0,0 +1,52 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
MFX_REPO="https://github.com/lu-zero/mfx_dispatch.git"
|
||||||
|
MFX_COMMIT="3ecc413540bfce872e1408761788c92a4c07a5ce"
|
||||||
|
|
||||||
|
ffbuild_enabled() {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
ffbuild_dockerstage() {
|
||||||
|
to_df "ADD $SELF /stage.sh"
|
||||||
|
to_df "RUN run_stage"
|
||||||
|
}
|
||||||
|
|
||||||
|
ffbuild_dockerbuild() {
|
||||||
|
git clone "$MFX_REPO" mfx || return -1
|
||||||
|
cd mfx
|
||||||
|
git checkout "$MFX_COMMIT" || return -1
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
Loading…
Reference in a new issue