49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
require "formula"
|
|
|
|
class Rocksdb < Formula
|
|
homepage "http://rocksdb.org"
|
|
url "https://github.com/facebook/rocksdb/archive/rocksdb-3.6.1.tar.gz"
|
|
sha1 "5913cfe18a16487d6b3957fe104354c0ec15b9c7"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "49595928c9413224d17be626a8e5ae276fa1857b" => :yosemite
|
|
sha1 "5f97280309ca391216b67d8ac93703d4567a0895" => :mavericks
|
|
sha1 "3cf7ffd06fb57f5360d7332586ec96b04fc63c3b" => :mountain_lion
|
|
end
|
|
|
|
needs :cxx11
|
|
depends_on "snappy"
|
|
depends_on "lz4"
|
|
|
|
def install
|
|
ENV.cxx11
|
|
system "make", "clean"
|
|
system "make", "static_lib"
|
|
system "make", "shared_lib"
|
|
system "make", "install", "INSTALL_PATH=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include <assert.h>
|
|
#include <rocksdb/options.h>
|
|
#include <rocksdb/memtablerep.h>
|
|
using namespace rocksdb;
|
|
int main() {
|
|
Options options;
|
|
options.memtable_factory.reset(
|
|
NewHashSkipListRepFactory(16));
|
|
return 0;
|
|
}
|
|
EOS
|
|
|
|
system ENV.cxx, "test.cpp", "-o", "db_test", "-v", "-std=c++11",
|
|
"-stdlib=libc++",
|
|
"-lstdc++",
|
|
"-lrocksdb",
|
|
"-lz", "-lbz2",
|
|
"-lsnappy", "-llz4"
|
|
system "./db_test"
|
|
end
|
|
end
|