blob: eb65d7f93e801b8cbab33eaa6fa16af4923e99c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Mongoose < Formula
homepage 'http://code.google.com/p/mongoose/'
url 'http://mongoose.googlecode.com/files/mongoose-2.11.tgz'
md5 'f6985da7513d354cc18b21b7670d23c1'
def install
system "make mac"
bin.install "mongoose"
man1.install "mongoose.1"
end
end
|