# Exit on error:
set -e

wget https://python.org/ftp/python/2.7.8/Python-2.7.8.tar.xz
tar xf Python-2.7.8.tar.xz
cd Python-2.7.8

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

make install
cd ..
rm -rf Python-2.7.8
rm Python-2.7.8.tar.xz

exit 0
