blob: 7ac79138614cd24d33e13bf9f12f345cb48563ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
require 'formula'
class Mongrel2 < Formula
homepage 'http://mongrel2.org/'
url 'https://github.com/zedshaw/mongrel2/archive/v1.8.1.tar.gz'
sha1 '11230cb59aa4834e017023c8f9b6519831d91767'
head 'https://github.com/zedshaw/mongrel2.git'
depends_on 'zeromq'
def patches
# allow mongrel2 to build against libzmq 4
[
"https://gist.github.com/minrk/7632116/raw/44d0ed09ecfc68a9f9d6a940c6367f703cd55c46/0001-add-zmq_compat-check-for-libzmq-4.patch"
]
end
def install
# Build in serial. See:
# https://github.com/mxcl/homebrew/issues/8719
ENV.j1
# Mongrel2 pulls from these ENV vars instead
ENV['OPTFLAGS'] = "#{ENV.cflags} #{ENV.cppflags}"
ENV['OPTLIBS'] = ENV.ldflags
system "make all"
system "make", "install", "PREFIX=#{prefix}"
end
end
|