mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-30 06:34:32 +02:00
40 lines
716 B
Bash
Executable File
40 lines
716 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/GNOME/libxml2.git"
|
|
SCRIPT_COMMIT="28b9bb030954d37e521113384c8cc0979d0e204b"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--without-python
|
|
--disable-maintainer-mode
|
|
--disable-shared
|
|
--enable-static
|
|
)
|
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
|
myconf+=(
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
)
|
|
else
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
./autogen.sh "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-libxml2
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-libxml2
|
|
}
|