blob: f7b16a549bd17c9a929454cff713947181769769 (
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.2.4/libbson-0.2.4.tar.gz'
sha1 '53972c042f7d453e172132fe499b21a216746b9d'
depends_on :automake
def install
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
system "make", "install"
end
end
|