# 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=
make install
cd ..
rm -rf nettle-2.7.1
rm nettle-2.7.1.tar.gz

exit 0
