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

50 lines
909 B
Bash
Raw Normal View History

2020-09-04 21:30:11 +00:00
#!/bin/bash
2020-09-27 14:17:47 +00:00
LIBXML2_REPO="https://gitlab.gnome.org/GNOME/libxml2.git"
2020-11-10 15:22:37 +00:00
LIBXML2_COMMIT="7c06d99e1f4f853e3c5b307c0dc79c8a32a09855"
2020-09-04 21:30:11 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
2020-09-05 14:38:11 +00:00
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
2020-09-04 21:30:11 +00:00
}
ffbuild_dockerbuild() {
2020-09-27 14:17:47 +00:00
git-mini-clone "$LIBXML2_REPO" "$LIBXML2_COMMIT" libxml2
2020-09-05 19:37:13 +00:00
cd libxml2
2020-09-04 21:30:11 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
--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[@]}" || return -1
make -j$(nproc) || return -1
make install || return -1
2020-09-27 14:17:47 +00:00
cd ..
2020-09-05 19:37:13 +00:00
rm -rf libxml2
2020-09-04 21:30:11 +00:00
}
ffbuild_configure() {
echo --enable-libxml2
}
ffbuild_unconfigure() {
echo --disable-libxml2
}