28 lines
794 B
Ruby
28 lines
794 B
Ruby
require 'formula'
|
|
|
|
class Uwsgi <Formula
|
|
url 'http://projects.unbit.it/downloads/uwsgi-0.9.5.1.tar.gz'
|
|
homepage 'http://projects.unbit.it/uwsgi/'
|
|
md5 'cc032e0f0e987a848606d3bc90241756'
|
|
|
|
def install
|
|
# 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
|
|
|
|
flags = archs.collect{ |a| "-arch #{a}" }.join(' ')
|
|
|
|
system "CFLAGS='#{flags}' LDFLAGS='#{flags}' python uwsgiconfig.py --build"
|
|
bin.install "uwsgi"
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
NOTE: "brew install -v uwsgi" will fail!
|
|
You must install in non-verbose mode for this to succeed.
|
|
Patches to fix this are welcome.
|
|
EOS
|
|
end
|
|
end
|