# Depends on gtk3

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/GNOME/sources/libunique/3.0/libunique-3.0.2.tar.xz
tar xf libunique-3.0.2.tar.xz
cd libunique-3.0.2

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
