# Depends on libsigcxx (libsigc++)

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/glibmm/2.38/glibmm-2.38.2.tar.xz
tar xf glibmm-2.38.2.tar.xz
cd glibmm-2.38.2

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
