# 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=
make install
cd ..
rm -rf libnotify-0.7.6
rm libnotify-0.7.6.tar.xz

exit 0
