diff --git a/Formula/python.rb b/Formula/python.rb index 278596aa6da..da058197516 100644 --- a/Formula/python.rb +++ b/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