aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-03-05 22:37:44 -0600
committerJack Nagel2012-03-05 22:40:06 -0600
commit8cb82ec15f052c829b84e569b4dbb43a98f7a7ba (patch)
tree06324309de7cc1cd6ce3c43a77bb265ffb0c860e /Library/Formula
parentcdf12f545ce0f6d12d5dcef765f19b083a494ceb (diff)
downloadhomebrew-8cb82ec15f052c829b84e569b4dbb43a98f7a7ba.tar.bz2
mod_wsgi: remove "verbose install" caveats
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
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