# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/libgsf/1.14/libgsf-1.14.29.tar.xz
tar xf libgsf-1.14.29.tar.xz
cd libgsf-1.14.29

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
