homebrew-core/Formula/uwsgi.rb

32 lines
892 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Uwsgi < Formula
url 'http://projects.unbit.it/downloads/uwsgi-0.9.9.2.tar.gz'
homepage 'http://projects.unbit.it/uwsgi/'
md5 'fafecf7dc86a36f003d2fadaa44483f1'
2010-01-13 11:06:52 +00:00
def install
2011-03-19 16:50:37 +00:00
# Find the arch for the Python we are building against.
2010-04-18 23:07:55 +00:00
# We remove 'ppc' support, so we can pass Intel-optimized CFLAGS.
archs = archs_for_command("python")
2011-03-19 16:50:37 +00:00
archs.remove_ppc!
flags = archs.as_arch_flags
2010-04-18 23:07:55 +00:00
ENV.append 'CFLAGS', flags
ENV.append 'LDFLAGS', flags
inreplace 'uwsgiconfig.py', "PYLIB_PATH = ''", "PYLIB_PATH = '#{%x[python-config --ldflags].chomp[/-L(.*?) -l/, 1]}'"
system "python uwsgiconfig.py --build"
bin.install "uwsgi"
end
2010-06-22 21:33:53 +00:00
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