# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/libnotify/0.7/libnotify-0.7.6.tar.xz
tar xf libnotify-0.7.6.tar.xz
cd libnotify-0.7.6

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
