homebrew-core/Formula/leveldb.rb
2019-05-07 15:05:28 +02:00

34 lines
1.1 KiB
Ruby

class Leveldb < Formula
desc "Key-value storage library with ordered mapping"
homepage "https://github.com/google/leveldb/"
url "https://github.com/google/leveldb/archive/1.22.tar.gz"
sha256 "55423cac9e3306f4a9502c738a001e4a339d1a38ffbee7572d4a07d5d63949b2"
bottle do
cellar :any
sha256 "22e4a129bedd5030525f749a5b5ec978bf6da0a9b0625fe829da482a5ab85755" => :mojave
sha256 "b1cf697cad28caac418d2e0ef49bc90863f389402185d3cc0f1f7079516d02c2" => :high_sierra
sha256 "810dbeba5e3f7d72d4772b9eff4d9022a1240c0abc6235afbd343c199741e6f7" => :sierra
end
depends_on "cmake" => :build
depends_on "gperftools"
depends_on "snappy"
def install
mkdir "build" do
system "cmake", "..", *std_cmake_args, "-DBUILD_SHARED_LIBS=ON"
system "make", "install"
bin.install "leveldbutil"
system "make", "clean"
system "cmake", "..", *std_cmake_args, "-DBUILD_SHARED_LIBS=OFF"
system "make"
lib.install "libleveldb.a"
end
end
test do
assert_match "dump files", shell_output("#{bin}/leveldbutil 2>&1", 1)
end
end