# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/atkmm/2.22/atkmm-2.22.7.tar.xz
tar xf atkmm-2.22.7.tar.xz
cd atkmm-2.22.7

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
