blob: 5d6fe0c27b695fb090ba80622aaa2eab47b5712d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require "formula"
class Libbson < Formula
homepage "https://github.com/mongodb/libbson"
url "https://github.com/mongodb/libbson/releases/download/1.0.2/libbson-1.0.2.tar.gz"
sha1 "20126faa95dfdcdc30d4289b82e914cc5b606be7"
bottle do
cellar :any
sha1 "290424b019dfc4ddf6aa0eb441b7882d3d60d688" => :yosemite
sha1 "ce84cf5b8745f559d0c9275c45ae0212d0b39e96" => :mavericks
sha1 "12916e6c197294cfafd5de0eab2d25eb732d4a30" => :mountain_lion
end
def install
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
system "make", "install"
end
end
|