# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/libsigc++/2.4/libsigc++-2.4.0.tar.xz
tar xf libsigc++-2.4.0.tar.xz
cd libsigc++-2.4.0

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
