# Depends on openssl shared libs

# Exit on error:
set -e

wget https://python.org/ftp/python/2.7.8/Python-2.7.8.tar.xz \
    --no-check-certificate
tar xf Python-2.7.8.tar.xz
cd Python-2.7.8

./configure \
    --prefix=/usr \
    --enable-shared

make
make install

cd ..
exit 0
