# 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= \
    --disable-documentation

make install
cd ..
rm -rf cairomm-1.10.0
rm cairomm-1.10.0.tar.gz

exit 0
