# Exit on error:
set -e

wget ftp://xmlsoft.org/libxml2/libxml2-2.9.1.tar.gz
tar xf libxml2-2.9.1.tar.gz
cd libxml2-2.9.1

./configure \
    --prefix=/usr \
    --without-python

make
make install

#python3 setup.py build
#python3 setup.py install

cd ..
exit 0
