blob: 8e95346307e2b75b146f84075f2c96807ded2c66 (
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.8.4/libbson-0.8.4.tar.gz"
sha1 "698d68defaec7ed67d4f17090ae183aaa47a21df"
def install
system "./configure", "--enable-silent-rules", "--prefix=#{prefix}"
system "make", "install"
end
end
|