diff options
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 |
