homebrew-core/Formula/rocksdb.rb

81 lines
3.1 KiB
Ruby

class Rocksdb < Formula
desc "Embeddable, persistent key-value store for fast storage"
homepage "https://rocksdb.org/"
url "https://github.com/facebook/rocksdb/archive/v5.13.3.tar.gz"
sha256 "a5bff08010041bb28eaad062e7c4b6963f1dbed2c71078d39587fc3e2a250cbe"
bottle do
cellar :any
sha256 "b1074cf88a49a34f9e9cf789b6e2b281a2e1c53530fb599c8695d42db008c5a6" => :high_sierra
sha256 "98023ac5a3e6f714a1d1d67cd35327b604b7e2cc0db777165ffd5ead66e07b64" => :sierra
sha256 "c1c42c0e34ba6f040c50b0e3e7f422ab9da9e6d2c2e524fd3648a0a2840b7be1" => :el_capitan
end
needs :cxx11
depends_on "snappy"
depends_on "lz4"
depends_on "gflags"
def install
ENV.cxx11
ENV["PORTABLE"] = "1" if build.bottle?
ENV["DEBUG_LEVEL"] = "0"
ENV["USE_RTTI"] = "1"
ENV["DISABLE_JEMALLOC"] = "1" # prevent opportunistic linkage
# build regular rocksdb
system "make", "clean"
system "make", "static_lib"
system "make", "shared_lib"
system "make", "tools"
system "make", "install", "INSTALL_PATH=#{prefix}"
bin.install "sst_dump" => "rocksdb_sst_dump"
bin.install "db_sanity_test" => "rocksdb_sanity_test"
bin.install "db_stress" => "rocksdb_stress"
bin.install "write_stress" => "rocksdb_write_stress"
bin.install "ldb" => "rocksdb_ldb"
bin.install "db_repl_stress" => "rocksdb_repl_stress"
bin.install "rocksdb_dump"
bin.install "rocksdb_undump"
# build rocksdb_lite
ENV.append_to_cflags "-DROCKSDB_LITE=1"
ENV["LIBNAME"] = "librocksdb_lite"
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
#include <assert.h>
#include <rocksdb/options.h>
#include <rocksdb/memtablerep.h>
using namespace rocksdb;
int main() {
Options options;
return 0;
}
EOS
system ENV.cxx, "test.cpp", "-o", "db_test", "-v",
"-std=c++11", "-stdlib=libc++", "-lstdc++",
"-lz", "-lbz2",
"-L#{lib}", "-lrocksdb_lite",
"-L#{Formula["snappy"].opt_lib}", "-lsnappy",
"-L#{Formula["lz4"].opt_lib}", "-llz4"
system "./db_test"
assert_match "sst_dump --file=", shell_output("#{bin}/rocksdb_sst_dump --help 2>&1", 1)
assert_match "rocksdb_sanity_test <path>", shell_output("#{bin}/rocksdb_sanity_test --help 2>&1", 1)
assert_match "rocksdb_stress [OPTIONS]...", shell_output("#{bin}/rocksdb_stress --help 2>&1", 1)
assert_match "rocksdb_write_stress [OPTIONS]...", shell_output("#{bin}/rocksdb_write_stress --help 2>&1", 1)
assert_match "ldb - RocksDB Tool", shell_output("#{bin}/rocksdb_ldb --help 2>&1", 1)
assert_match "rocksdb_repl_stress:", shell_output("#{bin}/rocksdb_repl_stress --help 2>&1", 1)
assert_match "rocksdb_dump:", shell_output("#{bin}/rocksdb_dump --help 2>&1", 1)
assert_match "rocksdb_undump:", shell_output("#{bin}/rocksdb_undump --help 2>&1", 1)
end
end