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

43 lines
810 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"
2021-04-03 23:09:54 +00:00
LIBXML2_COMMIT="fb08d9fe837ab64934e6ddc66d442e599c805ca4"
2020-09-04 21:30:11 +00:00
ffbuild_enabled() {
return 0
}
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"
--without-python
2020-09-04 21:30:11 +00:00
--disable-maintainer-mode
--disable-shared
--enable-static
)
if [[ $TARGET == win* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
elif [[ $TARGET != linux* ]]; then
2020-09-04 21:30:11 +00:00
echo "Unknown target"
return -1
fi
2021-04-04 21:20:31 +00:00
./autogen.sh "${myconf[@]}"
make -j$(nproc)
make install
2020-09-04 21:30:11 +00:00
}
ffbuild_configure() {
echo --enable-libxml2
}
ffbuild_unconfigure() {
echo --disable-libxml2
}