# Depends on giomm (glibmm)
# Depends on pangomm
# Depends on atkmm

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/gtkmm/2.24/gtkmm-2.24.4.tar.xz
tar xf gtkmm-2.24.4.tar.xz
cd gtkmm-2.24.4

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
