libbson 0.2.4

Closes Homebrew/homebrew#24261.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Tyler Brock 2013-11-13 10:17:30 -05:00 committed by Adam Vandenberg
parent ae54f4a9dc
commit 4cbfa42ab5

14
Formula/libbson.rb Normal file
View file

@ -0,0 +1,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