FFmpeg-Builds/scripts.d/21-libxml2.sh

48 lines
865 B
Bash
Executable File

#!/bin/bash
LIBXML2_REPO="https://gitlab.gnome.org/GNOME/libxml2.git"
LIBXML2_COMMIT="fb08d9fe837ab64934e6ddc66d442e599c805ca4"
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
}
ffbuild_dockerbuild() {
git-mini-clone "$LIBXML2_REPO" "$LIBXML2_COMMIT" libxml2
cd libxml2
local myconf=(
--prefix="$FFBUILD_PREFIX"
--without-python
--disable-maintainer-mode
--disable-shared
--enable-static
)
if [[ $TARGET == win* ]]; 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
}