mongodb 2.6.1 and 2.7.0
This commit is contained in:
parent
41a8004c75
commit
6573b235c1
1 changed files with 9 additions and 7 deletions
|
@ -2,14 +2,15 @@ require 'formula'
|
|||
|
||||
class Mongodb < Formula
|
||||
homepage "http://www.mongodb.org/"
|
||||
url "http://downloads.mongodb.org/src/mongodb-src-r2.6.0.tar.gz"
|
||||
sha1 "35f8efe61d992f4b71c9205a9dbcab50e745c9a3"
|
||||
revision 1
|
||||
url "http://downloads.mongodb.org/src/mongodb-src-r2.6.1.tar.gz"
|
||||
sha1 "3e069329e93a45f14bb86618eceea08d376dbc82"
|
||||
|
||||
bottle do
|
||||
sha1 "1c7b447ae2077b9efeaee2aa2c2474dc6b19ab6f" => :mavericks
|
||||
sha1 "0004e3bfb60db586f6ced02769ccd1cf325e0929" => :mountain_lion
|
||||
sha1 "7667f6cc36859fb9fced1885f382b76ae325583c" => :lion
|
||||
end
|
||||
|
||||
devel do
|
||||
url "http://downloads.mongodb.org/src/mongodb-src-r2.7.0.tar.gz"
|
||||
sha1 "43449a69c3386e13fdb6abb2b13933f3ba607cc5"
|
||||
end
|
||||
|
||||
head do
|
||||
|
@ -39,7 +40,8 @@ class Mongodb < Formula
|
|||
args << "--cxx=#{cxx}"
|
||||
|
||||
# --full installs development headers and client library, not just binaries
|
||||
args << "--full"
|
||||
# (only supported pre-2.7)
|
||||
args << "--full" if build.stable?
|
||||
args << "--use-system-boost" if build.with? "boost"
|
||||
|
||||
if build.with? 'openssl'
|
||||
|
|
Loading…
Reference in a new issue