# 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=
make install
cd ..
rm -rf libsigc++-2.4.0
rm libsigc++-2.4.0.tar.xz

exit 0
