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"
|
|
|
|
url "https://github.com/mongodb/libbson/releases/download/0.8.4/libbson-0.8.4.tar.gz"
|
|
|
|
sha1 "698d68defaec7ed67d4f17090ae183aaa47a21df"
|
2013-11-13 15:17:30 +00:00
|
|
|
|
2014-07-03 17:36:38 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "d0a43ac2ce476cf7bc20350857786713418c7977" => :mavericks
|
|
|
|
sha1 "9fd0d05b79e2cc48811df35dabcc0878c205af55" => :mountain_lion
|
|
|
|
sha1 "cfb36772ff29c3aaf00815a372e0e20d9fa3b08c" => :lion
|
|
|
|
end
|
|
|
|
|
2013-11-13 15:17:30 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|