Files
python-versions/build-2.7.2.sh
T
Kenneth Reitz b5fb89a3be 2.7.1, 2.7.2
2012-08-05 19:48:50 -04:00

14 lines
287 B
Bash
Executable File

#!/usr/bin/env bash
# Usage: $ build.sh <output-dir
SOURCE_TARBALL='http://www.python.org/ftp/python/2.7.2/Python-2.7.2.tar.bz2'
curl $SOURCE_TARBALL | tar jx
mv Python-2.7.2 src
cd src
./configure --prefix=$(pwd)/../python
make
make install
cd ..
tar cjf python-2.7.2.tar.bz2 python/