aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libbson.rb
blob: 6b6bf6d54722a80d3a3953925abec22c7142357f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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