aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mod_wsgi.rb27
1 files changed, 12 insertions, 15 deletions
diff --git a/Library/Formula/mod_wsgi.rb b/Library/Formula/mod_wsgi.rb
index 696c42dec..169d5ca2d 100644
--- a/Library/Formula/mod_wsgi.rb
+++ b/Library/Formula/mod_wsgi.rb
@@ -1,24 +1,11 @@
require 'formula'
class ModWsgi < Formula
+ homepage 'http://code.google.com/p/modwsgi/'
url 'http://modwsgi.googlecode.com/files/mod_wsgi-3.3.tar.gz'
sha1 'f32d38e5d3ed5de1efd5abefb52678f833dc9166'
- homepage 'http://code.google.com/p/modwsgi/'
- head "http://modwsgi.googlecode.com/svn/trunk/mod_wsgi"
-
- def caveats
- <<-EOS.undent
- NOTE: "brew install -v mod_wsgi" will fail! You must install
- in non-verbose mode for this to succeed. Patches to fix this
- are welcome.
- * You must manually edit /etc/apache2/httpd.conf to load
- #{libexec}/mod_wsgi.so
-
- * On 10.5, you must run Apache in 32-bit mode:
- http://code.google.com/p/modwsgi/wiki/InstallationOnMacOSX
- EOS
- end
+ head 'http://modwsgi.googlecode.com/svn/trunk/mod_wsgi'
def install
# Remove a flag added when homebrew isn't in /usr/local
@@ -43,4 +30,14 @@ class ModWsgi < Formula
system "make install"
end
+
+ def caveats
+ <<-EOS.undent
+ You must manually edit /etc/apache2/httpd.conf to load
+ #{libexec}/mod_wsgi.so
+
+ On 10.5, you must run Apache in 32-bit mode:
+ http://code.google.com/p/modwsgi/wiki/InstallationOnMacOSX
+ EOS
+ end
end