aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libbson.rb
blob: cef24abd3cdd4d85b8948347a191f9df7bc13789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Libbson < Formula
  homepage 'https://github.com/mongodb/libbson'
  url 'https://github.com/mongodb/libbson/releases/download/0.6.8/libbson-0.6.8.tar.gz'
  sha1 '96f7bb4bcc6a5b1e40e1c9179d96212f8846c1dc'

  def install
    system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
    system "make", "install"
  end
end