1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 04:55:04 +03:00
libxml2/.gitlab-ci/setup_mingw.sh
2022-09-07 12:12:45 +02:00

18 lines
399 B
Bash

#!/bin/sh
pacman --noconfirm -Syu
prefix=
if [ -n "$MINGW_PACKAGE_PREFIX" ]; then
prefix="${MINGW_PACKAGE_PREFIX}-"
fi
for module in libiconv python xz zlib "$@"; do
pacman --noconfirm -S --needed ${prefix}$module
done
if [ ! -e libxml2-build/xmlconf ]; then
mkdir -p libxml2-build
wget https://www.w3.org/XML/Test/xmlts20080827.tar.gz -O - |
tar -x -z -C libxml2-build
fi