mirror of
https://github.com/kennethreitz-archive/python-versions.git
synced 2026-06-05 23:30:17 +00:00
14 lines
287 B
Bash
Executable File
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.3/Python-2.7.3.tar.bz2'
|
|
curl $SOURCE_TARBALL | tar zx
|
|
mv Python-2.7.3 src
|
|
cd src
|
|
|
|
./configure --prefix=$(pwd)/../python
|
|
make
|
|
make install
|
|
|
|
cd ..
|
|
tar cjf python-2.7.3.tar.bz2 python/ |