# Exit on error:
set -e

wget http://cairographics.org/releases/cairomm-1.10.0.tar.gz
tar xf cairomm-1.10.0.tar.gz
cd cairomm-1.10.0

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
