20 lines
606 B
Ruby
20 lines
606 B
Ruby
require "formula"
|
|
|
|
class Libbson < Formula
|
|
homepage "https://github.com/mongodb/libbson"
|
|
url "https://github.com/mongodb/libbson/releases/download/1.0.0/libbson-1.0.0.tar.gz"
|
|
sha1 "f1cd25e34426472ec3d8028edc6685fe77a81f5b"
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 1
|
|
sha1 "3297d100eaedf77809f91c51a7f72a73b593b933" => :yosemite
|
|
sha1 "df8c11ab2248097d690e052f890658e357a16b59" => :mavericks
|
|
sha1 "1f1dc1a0f7a196c8211a8e2fc1b3b2f69b58aefd" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|