aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-04-16 20:53:51 -0700
committerAdam Vandenberg2012-04-16 20:53:51 -0700
commita0e75ee85fe2278fe67515ae35716fd4715141ab (patch)
treeca8b3cad47484348536df568f1135f86265186f4 /Library
parent635ef25780a35a272723938b606744d10839984a (diff)
downloadhomebrew-a0e75ee85fe2278fe67515ae35716fd4715141ab.tar.bz2
uWSGI 1.1.2
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/uwsgi.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/uwsgi.rb b/Library/Formula/uwsgi.rb
index 6274c8324..f7aa1e4f6 100644
--- a/Library/Formula/uwsgi.rb
+++ b/Library/Formula/uwsgi.rb
@@ -2,18 +2,18 @@ require 'formula'
class Uwsgi < Formula
homepage 'http://projects.unbit.it/uwsgi/'
- url 'http://projects.unbit.it/downloads/uwsgi-1.0.4.tar.gz'
- md5 '559c8d1fa8274fb45437c277c0c7f121'
+ url 'http://projects.unbit.it/downloads/uwsgi-1.1.2.tar.gz'
+ md5 '69d2a89e283a047c750dde858a384e25'
def install
# Find the arch for the Python we are building against.
# We remove 'ppc' support, so we can pass Intel-optimized CFLAGS.
archs = archs_for_command("python")
archs.remove_ppc!
- flags = archs.as_arch_flags
+ arch_flags = archs.as_arch_flags
- ENV.append 'CFLAGS', flags
- ENV.append 'LDFLAGS', flags
+ ENV.append 'CFLAGS', arch_flags
+ ENV.append 'LDFLAGS', arch_flags
system "python uwsgiconfig.py --build"
bin.install "uwsgi"