2011-02-24 22:07:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mongoose < Formula
|
|
|
|
homepage 'http://code.google.com/p/mongoose/'
|
2012-03-31 00:57:12 +00:00
|
|
|
url 'http://mongoose.googlecode.com/files/mongoose-3.1.tgz'
|
|
|
|
md5 'e718fc287b4eb1bd523be3fa00942bb0'
|
2011-02-24 22:07:47 +00:00
|
|
|
|
|
|
|
def install
|
2012-03-31 00:57:12 +00:00
|
|
|
system "make", "mac", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
|
2011-02-24 22:07:47 +00:00
|
|
|
bin.install "mongoose"
|
|
|
|
man1.install "mongoose.1"
|
|
|
|
end
|
|
|
|
end
|