# Exit on error:
set -e

wget https://download.gnome.org/sources/libxml2/2.9/libxml2-2.9.1.tar.xz
tar xf libxml2-2.9.1.tar.xz
cd libxml2-2.9.1
./configure \
    --prefix= \
    --without-python
make install
cd ..
rm -rf libxml2-2.9.1
rm libxml2-2.9.1.tar.xz

exit 0
