homebrew-core/Formula/libbson.rb

20 lines
591 B
Ruby
Raw Normal View History

2014-06-21 20:23:21 +00:00
require "formula"
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/1.1.0/libbson-1.1.0.tar.gz"
sha1 "5f9b9449d795637601e7e8a2e0abd747a75c1f37"
2014-07-03 17:36:38 +00:00
bottle do
cellar :any
2015-01-30 23:05:10 +00:00
sha1 "aeae3042023009d459e374b9f6aea4b2b374c341" => :yosemite
sha1 "9600e435b74c33952c82b3fbdd66c492c0604414" => :mavericks
sha1 "f4ed9c9dde8ba73e078a2eb642ad63be585b312c" => :mountain_lion
2014-07-03 17:36:38 +00:00
end
def install
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
system "make", "install"
end
end