From fafad4e7af4b0e91a62c8b2bcfc6fd691214b84a Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Tue, 29 Jun 2010 12:55:26 -0700 Subject: [PATCH] Add formula for Distribute for Python. "Distribute" is a "setuptools" replacement for Python, and is a prequisite for "pip". Homebrew suggests using pip to install Python modules required by a few brews. This brew, by design, will only install against a Homebrew-built version of Python, with instructions for installing distribute against a custom Python. --- Formula/distribute.rb | 45 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Formula/distribute.rb diff --git a/Formula/distribute.rb b/Formula/distribute.rb new file mode 100644 index 00000000000..51c85ee6c35 --- /dev/null +++ b/Formula/distribute.rb @@ -0,0 +1,45 @@ +require 'formula' + +class Distribute