From 688232468e68375bd69bbee207f1df3181284bcb Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 6 Aug 2012 03:27:31 -0400 Subject: [PATCH] 3.3.0 --- formula/python-3.3.0a | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 formula/python-3.3.0a diff --git a/formula/python-3.3.0a b/formula/python-3.3.0a new file mode 100755 index 0000000..fe2e4f9 --- /dev/null +++ b/formula/python-3.3.0a @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.3.0/Python-3.3.0b1.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.3.0 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file