aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/uwsgi.rb11
1 files changed, 8 insertions, 3 deletions
diff --git a/Library/Formula/uwsgi.rb b/Library/Formula/uwsgi.rb
index 94cca6100..dd8faf276 100644
--- a/Library/Formula/uwsgi.rb
+++ b/Library/Formula/uwsgi.rb
@@ -1,9 +1,9 @@
require 'formula'
class Uwsgi <Formula
- url 'http://projects.unbit.it/downloads/uwsgi-0.9.5.1.tar.gz'
+ url 'http://projects.unbit.it/downloads/uwsgi-0.9.5.3.tar.gz'
homepage 'http://projects.unbit.it/uwsgi/'
- md5 'cc032e0f0e987a848606d3bc90241756'
+ md5 'f4835859bc87080a58289b980b7ae15c'
def install
# Find the archs of the Python we are building against.
@@ -14,7 +14,12 @@ class Uwsgi <Formula
flags = archs.collect{ |a| "-arch #{a}" }.join(' ')
- system "CFLAGS='#{flags}' LDFLAGS='#{flags}' python uwsgiconfig.py --build"
+ ENV.append 'CFLAGS', flags
+ ENV.append 'LDFLAGS', flags
+
+ inreplace 'uwsgiconfig.py', "PYLIB_PATH = ''", "PYLIB_PATH = '#{%x[python-config --ldflags].chomp[/-L(.*?) -l/, 1]}'"
+
+ system "python uwsgiconfig.py --build"
bin.install "uwsgi"
end