# Depends on libgpg-error

# Exit on error:
set -e

wget ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.5.3.tar.gz
tar xf libgcrypt-1.5.3.tar.gz
cd libgcrypt-1.5.3
./configure --prefix=
make install
cd ..
rm -rf libgcrypt-1.5.3
rm libgcrypt-1.5.3.tar.gz

exit 0
