# 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=/usr

make
make install

cd ..
exit 0
