blob: 810979af12d339e44c41a9b4acb92ceeccf2dce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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'
depends_on :automake
def install
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
system "make", "install"
end
end
|