2009-12-01 08:52:29 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Uwsgi < Formula
|
2009-12-01 08:52:29 +00:00
|
|
|
homepage 'http://projects.unbit.it/uwsgi/'
|
2013-04-25 19:33:14 +00:00
|
|
|
url 'http://projects.unbit.it/downloads/uwsgi-1.9.8.tar.gz'
|
|
|
|
sha1 '41f6b838228d980a60d99c412a5ad16b4ba9bfe4'
|
2010-01-13 11:06:52 +00:00
|
|
|
|
2012-10-28 19:29:50 +00:00
|
|
|
depends_on 'pcre'
|
2013-03-11 22:10:56 +00:00
|
|
|
depends_on 'libyaml'
|
2012-04-17 23:24:55 +00:00
|
|
|
|
2009-12-01 08:52:29 +00:00
|
|
|
def install
|
2013-03-11 22:10:56 +00:00
|
|
|
arch = MacOS.prefer_64_bit? ? 'x86_64' : 'i386'
|
|
|
|
%w{CFLAGS LDFLAGS}.each { |e| ENV.append e, "-arch #{arch}" }
|
2010-06-29 00:20:27 +00:00
|
|
|
|
2012-04-17 23:24:55 +00:00
|
|
|
system "python", "uwsgiconfig.py", "--build"
|
2010-06-22 02:55:03 +00:00
|
|
|
bin.install "uwsgi"
|
2009-12-01 08:52:29 +00:00
|
|
|
end
|
2010-06-22 21:33:53 +00:00
|
|
|
end
|