libbson 0.2.4
Closes Homebrew/homebrew#24261. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
ae54f4a9dc
commit
4cbfa42ab5
1 changed files with 14 additions and 0 deletions
14
Formula/libbson.rb
Normal file
14
Formula/libbson.rb
Normal 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
|
Loading…
Reference in a new issue