diff options
| author | Dominyk Tiller | 2014-12-03 14:17:37 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-12-03 14:55:15 +0000 |
| commit | 9026037686ecc1deedbd3e78009dd8afabd2daa3 (patch) | |
| tree | d5145bfa8d174d8a68796c42758d1822392ab343 /Library | |
| parent | 469ccf897e1df7e944ec14a3509a80252d3fb409 (diff) | |
| download | homebrew-9026037686ecc1deedbd3e78009dd8afabd2daa3.tar.bz2 | |
lmdb 0.9.14
Version bump.
Closes #34636.
Closes #34642.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/lmdb.rb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Library/Formula/lmdb.rb b/Library/Formula/lmdb.rb index 3783e71ba..696d1000b 100644 --- a/Library/Formula/lmdb.rb +++ b/Library/Formula/lmdb.rb @@ -1,10 +1,10 @@ -require 'formula' +require "formula" class Lmdb < Formula - homepage 'http://symas.com/mdb/' - url "https://gitorious.org/mdb/mdb.git", :tag => "LMDB_0.9.13" + homepage "http://symas.com/mdb/" + url "https://gitorious.org/mdb/mdb.git", :tag => "LMDB_0.9.14" - head 'git://git.openldap.org/openldap.git', :branch => 'mdb.master' + head "git://git.openldap.org/openldap.git", :branch => "mdb.master" bottle do cellar :any @@ -26,4 +26,8 @@ class Lmdb < Formula system "make", "-C", "libraries/liblmdb", "install", "prefix=#{prefix}" end + + test do + system "#{bin}/mdb_dump", "-V" + end end |
