blob: 09bc1fe8363da0b0f8e807f436da472ace8f5e38 (
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
|
require 'formula'
class Mongrel2 < Formula
homepage 'http://mongrel2.org/'
url 'https://github.com/zedshaw/mongrel2/archive/v1.8.0.tar.gz'
sha1 '3c6e57caec19df92ff6af28301d70af05ec3e456'
head 'https://github.com/zedshaw/mongrel2.git'
depends_on 'zeromq'
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
|