# Exit on error:
set -e

wget http://python.org/ftp/python/3.3.2/Python-3.3.2.tar.xz
tar xf Python-3.3.2.tar.xz
cd Python-3.3.2

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
