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-07-21 01:53:06 +00:00
|
|
|
url "https://github.com/mongodb/libbson/releases/download/0.98.0/libbson-0.98.0.tar.gz"
|
|
|
|
sha1 "3e80019b8896669dc84781fe105438a3ccd2f483"
|
2013-11-13 15:17:30 +00:00
|
|
|
|
2014-07-03 17:36:38 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-07-21 02:24:05 +00:00
|
|
|
sha1 "a18922a78071fec3010ded0a8bc8a096510d4e2e" => :mavericks
|
|
|
|
sha1 "102eafc7b582a5868fe8e928d90b55381aca7d90" => :mountain_lion
|
|
|
|
sha1 "45ec75c0a1587f1908f45e022c6e95201b214bc7" => :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
|