homebrew-core/Formula/uwsgi.rb

19 lines
459 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.8.tar.gz'
sha1 '41f6b838228d980a60d99c412a5ad16b4ba9bfe4'
2010-01-13 11:06:52 +00:00
depends_on 'pcre'
depends_on 'libyaml'
def install
arch = MacOS.prefer_64_bit? ? 'x86_64' : 'i386'
%w{CFLAGS LDFLAGS}.each { |e| ENV.append e, "-arch #{arch}" }
system "python", "uwsgiconfig.py", "--build"
bin.install "uwsgi"
end
2010-06-22 21:33:53 +00:00
end