2010-09-21 10:26:01 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mongrel2 < Formula
|
2011-01-22 18:07:20 +00:00
|
|
|
url 'http://mongrel2.org/static/downloads/mongrel2-1.5.tar.bz2'
|
2010-10-18 13:56:09 +00:00
|
|
|
head 'fossil://http://mongrel2.org:44445/'
|
2010-09-21 10:26:01 +00:00
|
|
|
homepage 'http://mongrel2.org/'
|
2011-01-22 18:07:20 +00:00
|
|
|
md5 'b699ffc7ef922ad7d703fcd39a897910'
|
2010-09-21 10:26:01 +00:00
|
|
|
|
|
|
|
depends_on 'zeromq'
|
|
|
|
|
|
|
|
def install
|
2011-01-22 18:07:20 +00:00
|
|
|
# Mongrel2 pulls from these ENV vars instead
|
|
|
|
ENV['OPTFLAGS'] = "#{ENV.cflags} #{ENV.cppflags}"
|
|
|
|
ENV['OPTLIBS'] = ENV.ldflags
|
|
|
|
|
2010-09-21 10:26:01 +00:00
|
|
|
system "make all"
|
|
|
|
system "make install PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|