# Depends on docbook-xsl

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/libsecret/0.16/libsecret-0.16.tar.xz
tar xf libsecret-0.16.tar.xz
cd libsecret-0.16

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
