2011-02-24 22:07:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mongoose < Formula
|
2012-08-21 01:59:21 +00:00
|
|
|
homepage 'https://github.com/valenok/mongoose'
|
2013-01-01 14:58:20 +00:00
|
|
|
url 'https://github.com/valenok/mongoose/tarball/3.4'
|
|
|
|
sha1 '3b917304d5ffbb516167ef29561a9f82881bc033'
|
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
|