wiredtiger 2.8.0 (new formula)
Closes #634. Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
This commit is contained in:
parent
ce7f005cb5
commit
d965249896
1 changed files with 20 additions and 0 deletions
20
Formula/wiredtiger.rb
Normal file
20
Formula/wiredtiger.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
class Wiredtiger < Formula
|
||||
desc "high performance NoSQL extensible platform for data management"
|
||||
homepage "http://www.wiredtiger.com"
|
||||
url "https://github.com/wiredtiger/wiredtiger/releases/download/2.8.0/wiredtiger-2.8.0.tar.bz2"
|
||||
sha256 "593e4858a21465db6f8360cc6281489f8a114fa301bd2753c0bde9a86ef107e2"
|
||||
|
||||
depends_on "snappy"
|
||||
|
||||
def install
|
||||
system "./configure", "--with-builtins=snappy,zlib",
|
||||
"--with-python",
|
||||
"--prefix=#{prefix}"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/wt", "create", "table:test"
|
||||
system "#{bin}/wt", "drop", "table:test"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue