homebrew-core/Formula/uwsgi.rb
Krzysztof Urbaniak 9d1cf3a380 uwsgi 1.4.5
Closes Homebrew/homebrew#17928.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-02-18 13:25:37 -06:00

41 lines
1,017 B
Ruby

require 'formula'
class UniversalPcre < Requirement
fatal true
satisfy :build_env => false do
f = Formula.factory('pcre')
f.installed? && archs_for_command(f.lib/'libpcre.dylib').universal?
end
def message; <<-EOS.undent
pcre must be build universal for uwsgi to work.
You will need to:
brew rm pcre
brew install --universal pcre
EOS
end
end
class Uwsgi < Formula
homepage 'http://projects.unbit.it/uwsgi/'
url 'http://projects.unbit.it/downloads/uwsgi-1.4.5.tar.gz'
sha1 '264e5553137afb163e1edb4e1cdef8dffee592d3'
depends_on UniversalPcre
depends_on 'pcre'
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!
arch_flags = archs.as_arch_flags
ENV.append 'CFLAGS', arch_flags
ENV.append 'LDFLAGS', arch_flags
system "python", "uwsgiconfig.py", "--build"
bin.install "uwsgi"
end
end