# Exit on error:
set -e

wget ftp://ftp.lysator.liu.se/pub/security/lsh/nettle-2.7.1.tar.gz
tar xf nettle-2.7.1.tar.gz
cd nettle-2.7.1

./configure \
    --prefix=/usr
#    --disable-openssl

make
make install

cd ..
exit 0
