diff options
| author | Brett Koonce | 2013-09-27 19:43:40 -0500 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-09-27 18:29:21 -0700 | 
| commit | 7c9e7f3a6b22e722d5c5da036e247b64d285c95e (patch) | |
| tree | cb87a36b7fa780a1ee6861eedd9988c011f74f49 | |
| parent | ca9f6f7a3d25895fec1e4f2c7dd378e60d48e3d1 (diff) | |
| download | homebrew-7c9e7f3a6b22e722d5c5da036e247b64d285c95e.tar.bz2 | |
mongoose 4.1
Closes #22893.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/mongoose.rb | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/Library/Formula/mongoose.rb b/Library/Formula/mongoose.rb index 57732f8f1..ec0b75c2d 100644 --- a/Library/Formula/mongoose.rb +++ b/Library/Formula/mongoose.rb @@ -2,12 +2,14 @@ require 'formula'  class Mongoose < Formula    homepage 'https://github.com/valenok/mongoose' -  url 'https://github.com/valenok/mongoose/archive/3.8.tar.gz' -  sha1 '52b1f31132c4212628a4be9507f7f1891c3ee9da' +  url 'https://github.com/valenok/mongoose/archive/4.1.tar.gz' +  sha1 'e9c25fec4e1b9b929101201beacb9c5ba51ad78c'    def install -    system 'make mac' -    bin.install "mongoose" +    cd 'build' do +      system 'make mac' +      bin.install "mongoose" +    end      include.install 'mongoose.h'      prefix.install 'examples', 'UserManual.md'    end | 
