From f4a0672b3bec0a031a80b07519fe88db1f87d348 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 6 Aug 2012 05:30:40 -0400 Subject: [PATCH] 2.4.6 test --- formula/python-2.4.6 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 formula/python-2.4.6 diff --git a/formula/python-2.4.6 b/formula/python-2.4.6 new file mode 100755 index 0000000..c84c8af --- /dev/null +++ b/formula/python-2.4.6 @@ -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/2.4.6/Python-2.4.6.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-2.4.6 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file