# Depends on python2
# Depends on libxml2

# Exit on error:
set -e

wget https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.28.tar.xz
tar xf libxslt-1.1.28.tar.xz
cd libxslt-1.1.28
./configure --prefix=
make install
cd ..
rm -rf libxslt-1.1.28
rm libxslt-1.1.28.tar.xz

exit 0
