From e77be445096e036eedc9d557088cc80e81b0cc53 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Thu, 1 Oct 2009 21:00:15 -0700 Subject: Update Python to 2.6.3. --- Library/Formula/python.rb | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) (limited to 'Library/Formula/python.rb') diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index 278596aa6..da0581975 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -1,12 +1,19 @@ require 'brewkit' class Python :recommended + + def options + [ + ["--framework", "Do a 'Framework' build instead of a UNIX-style build."], + ["--intel", "Build for both 32 & 64 bit Intel."] + ] + end def skip_clean? path path == bin+'python' or path == bin+'python2.6' or # if you strip these, it can't load modules @@ -14,7 +21,19 @@ class Python