homebrew-core/Formula/mod_wsgi.rb

43 lines
1.3 KiB
Ruby

require 'formula'
class ModWsgi <Formula
url 'http://modwsgi.googlecode.com/files/mod_wsgi-3.2.tar.gz'
sha1 '227123f679f280d45639420fe2eeaa820f6a1cbc'
homepage 'http://code.google.com/p/modwsgi/'
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
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
# Find the archs of the Python we are building against.
# We remove 'ppc' support, so we can pass Intel-optimized CFLAGS.
archs = archs_for_command("python")
archs.delete :ppc7400
archs.delete :ppc64
inreplace 'Makefile' do |s|
s.gsub! "-Wc,'-arch x86_64' -Wc,'-arch i386' -Wc,'-arch ppc7400'",
archs.collect{ |a| "-Wc,'-arch #{a}'" }.join(' ')
s.gsub! "-arch x86_64 -arch i386 -arch ppc7400",
archs.collect{ |a| "-arch #{a}" }.join(' ')
# --libexecdir parameter to ./configure isn't changing this, so cram it in
# This will be where the Apache module ends up, and we don't want to touch
# the system libexec.
s.change_make_var! "LIBEXECDIR", libexec
end
system "make install"
end
end