aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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"