2014-06-21 20:23:21 +00:00
|
|
|
require "formula"
|
2013-11-13 15:17:30 +00:00
|
|
|
|
|
|
|
class Libbson < Formula
|
2014-06-21 20:23:21 +00:00
|
|
|
homepage "https://github.com/mongodb/libbson"
|
2014-10-23 19:21:53 +00:00
|
|
|
url "https://github.com/mongodb/libbson/releases/download/1.0.2/libbson-1.0.2.tar.gz"
|
|
|
|
sha1 "20126faa95dfdcdc30d4289b82e914cc5b606be7"
|
2013-11-13 15:17:30 +00:00
|
|
|
|
2014-07-03 17:36:38 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-10-23 19:30:42 +00:00
|
|
|
sha1 "290424b019dfc4ddf6aa0eb441b7882d3d60d688" => :yosemite
|
|
|
|
sha1 "ce84cf5b8745f559d0c9275c45ae0212d0b39e96" => :mavericks
|
|
|
|
sha1 "12916e6c197294cfafd5de0eab2d25eb732d4a30" => :mountain_lion
|
2014-07-03 17:36:38 +00:00
|
|
|
end
|
|
|
|
|
2013-11-13 15:17:30 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|