homebrew-core/Formula/uwsgi.rb

18 lines
426 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Uwsgi < Formula
homepage 'http://projects.unbit.it/uwsgi/'
url 'http://projects.unbit.it/downloads/uwsgi-1.9.18.2.tar.gz'
sha1 '613328a2da84a7eb3b6f01f892833f2ef8e591ca'
2010-01-13 11:06:52 +00:00
depends_on 'pcre'
depends_on 'libyaml'
def install
2014-01-04 13:17:21 +00:00
%w{CFLAGS LDFLAGS}.each { |e| ENV.append e, "-arch #{MacOS.preferred_arch}" }
2014-01-04 13:17:21 +00:00
system "python", "uwsgiconfig.py", "--build"
bin.install "uwsgi"
end
2010-06-22 21:33:53 +00:00
end