aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrett Koonce2014-01-30 17:16:48 -0600
committerBrett Koonce2014-01-30 18:14:25 -0600
commit4f025ec0fe414f748922d6d6205e35832b189d81 (patch)
treea8e9a7f8fcdaf1d216421dc39653027a08975945 /Library
parent47228cae76d54240af652daa3c59d6063c381ec1 (diff)
downloadhomebrew-4f025ec0fe414f748922d6d6205e35832b189d81.tar.bz2
mongoose 5.1
Closes #26301.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mongoose.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/mongoose.rb b/Library/Formula/mongoose.rb
index ec0b75c2d..cfe48d557 100644
--- a/Library/Formula/mongoose.rb
+++ b/Library/Formula/mongoose.rb
@@ -2,15 +2,15 @@ require 'formula'
class Mongoose < Formula
homepage 'https://github.com/valenok/mongoose'
- url 'https://github.com/valenok/mongoose/archive/4.1.tar.gz'
- sha1 'e9c25fec4e1b9b929101201beacb9c5ba51ad78c'
+ url 'https://github.com/valenok/mongoose/archive/5.1.tar.gz'
+ sha1 '0a2d0b83a7f5650a6e6c50fd7ba18a06ebe79335'
def install
cd 'build' do
- system 'make mac'
+ system 'make all'
bin.install "mongoose"
end
include.install 'mongoose.h'
- prefix.install 'examples', 'UserManual.md'
+ prefix.install 'examples', 'docs'
end
end