diff options
| author | Stefan | 2013-03-04 01:37:55 +0100 | 
|---|---|---|
| committer | Jack Nagel | 2013-03-03 22:49:51 -0600 | 
| commit | 81307270ca706090dd45b8130a3fc8ec0cea1099 (patch) | |
| tree | c62e6ded4d9ffa43bf486c49b32981e764742031 | |
| parent | a496ac4787c82f1d833038e267e2d2e9417b14d7 (diff) | |
| download | homebrew-81307270ca706090dd45b8130a3fc8ec0cea1099.tar.bz2 | |
mongoose 3.7
Closes #18215.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/mongoose.rb | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/Library/Formula/mongoose.rb b/Library/Formula/mongoose.rb index 3f600132c..2745bacfb 100644 --- a/Library/Formula/mongoose.rb +++ b/Library/Formula/mongoose.rb @@ -2,12 +2,13 @@ require 'formula'  class Mongoose < Formula    homepage 'https://github.com/valenok/mongoose' -  url 'https://github.com/valenok/mongoose/tarball/3.4' -  sha1 '3b917304d5ffbb516167ef29561a9f82881bc033' +  url 'https://github.com/valenok/mongoose/archive/3.7.tar.gz' +  sha1 'ca9425456c11fc795515f6987396a5945bf788cd'    def install -    system "make", "mac", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}" +    system 'make mac'      bin.install "mongoose" -    man1.install "mongoose.1" +    include.install 'mongoose.h' +    prefix.install 'examples', 'UserManual.md'    end  end | 
