This commit is contained in:
Kenneth Reitz
2012-08-05 19:47:36 -04:00
parent 9032ee3c1c
commit f156823f1a
4 changed files with 29 additions and 0 deletions
View File
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/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 jx
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/
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/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 jx
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/
+1
View File
@@ -0,0 +1 @@
boto