Files
python-versions/formula/python-2.7.3
T
Kenneth Reitz 75081ed1fc build.sh
2012-08-05 22:09:12 -04:00

16 lines
299 B
Bash
Executable File

#!/usr/bin/env bash
# Options: <output-dir>
OUT_PREFIX=$1
echo "Building SQLite..."
./parts/sqlite $OUT_PREFIX
SOURCE_TARBALL='http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2'
curl $SOURCE_TARBALL | tar jx
mv Python-2.7.3 src
cd src
./configure --prefix=$OUT_PREFIX
make
make install