# Depends on docbook-xsl
# Depends on libgcrypt

# 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= \
    --disable-gtk-doc-html

make install
cd ..
rm -rf libsecret-0.16
rm libsecret-0.16.tar.xz

exit 0
