This commit is contained in:
Kenneth Reitz
2012-08-05 22:09:12 -04:00
parent b5fb89a3be
commit 75081ed1fc
13 changed files with 98 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/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