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-03-04 00:37:55 +00:00
|
|
|
url 'https://github.com/valenok/mongoose/archive/3.7.tar.gz'
|
|
|
|
sha1 'ca9425456c11fc795515f6987396a5945bf788cd'
|
2011-02-24 22:07:47 +00:00
|
|
|
|
|
|
|
def install
|
2013-03-04 00:37:55 +00:00
|
|
|
system 'make mac'
|
2011-02-24 22:07:47 +00:00
|
|
|
bin.install "mongoose"
|
2013-03-04 00:37:55 +00:00
|
|
|
include.install 'mongoose.h'
|
|
|
|
prefix.install 'examples', 'UserManual.md'
|
2011-02-24 22:07:47 +00:00
|
|
|
end
|
|
|
|
end
|