blob: 8fb32532f6c73d91ffd449c8c377b4de4b98092e (
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.4.0/libbson-0.4.0.tar.gz'
sha1 '3652df214a14728b2d3075ef97f727b55ff3f17c'
depends_on :automake
def install
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
system "make", "install"
end
end
|