# Exit on error:
set -e

wget https://download.gnome.org/sources/gnome-common/3.14/gnome-common-3.14.0.tar.xz
tar xf gnome-common-3.14.0.tar.xz
cd gnome-common-3.14.0

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
