# Depends on perl

# Exit on error:
set -e

wget ftp://ftp.openssl.org/source/openssl-1.0.1i.tar.gz
tar xf openssl-1.0.1i.tar.gz
cd openssl-1.0.1i

./config \
    --prefix=/usr \
    --openssldir=/etc/ssl \
    shared

make -j1

# Install without the documentation:
make install_sw

cd ..
exit 0
