blob: cade76f092c34e6172538ba0b96993961b7ef3cd (
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/0.8.4/libbson-0.8.4.tar.gz"
sha1 "698d68defaec7ed67d4f17090ae183aaa47a21df"
bottle do
cellar :any
sha1 "d0a43ac2ce476cf7bc20350857786713418c7977" => :mavericks
sha1 "9fd0d05b79e2cc48811df35dabcc0878c205af55" => :mountain_lion
sha1 "cfb36772ff29c3aaf00815a372e0e20d9fa3b08c" => :lion
end
def install
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
system "make", "install"
end
end
|