# Exit on error:
set -e

wget http://downloads.sourceforge.net/project/expat/expat/2.1.0/expat-2.1.0.tar.gz
tar xf expat-2.1.0.tar.gz
cd expat-2.1.0

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
