homebrew-core/Formula/snappy.rb

51 lines
1.7 KiB
Ruby

class Snappy < Formula
desc "Compression/decompression library aiming for high speed"
homepage "https://google.github.io/snappy/"
url "https://github.com/google/snappy/archive/1.1.8.tar.gz"
sha256 "16b677f07832a612b0836178db7f374e414f94657c138e6993cbfc5dcc58651f"
license "BSD-3-Clause"
head "https://github.com/google/snappy.git"
bottle do
sha256 cellar: :any, arm64_big_sur: "f6d2b583adf7f67e01d6399acfd8960929df9ffeb8fb8a93e4570af4da9b799f"
sha256 cellar: :any, big_sur: "b3ebf378db9b345341fc4695d1c6834433bd729a471d60b4f34306823312c464"
sha256 cellar: :any, catalina: "b15a258346dc93bd5c6900a405ccb2e9e02ebfeb5b16607b340cc6a5a021eba3"
sha256 cellar: :any, mojave: "e996c3b0dfac02c8cdd06d849db47e853800389ff7d18fa66526d7d51d305589"
sha256 cellar: :any, high_sierra: "77276307037cc20bf44c86fef60b1745c1d8f84d6f963332535b34868f5fc2b4"
end
depends_on "cmake" => :build
depends_on "pkg-config" => :build
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
system "make", "clean"
system "cmake", ".", "-DBUILD_SHARED_LIBS=ON", *std_cmake_args
system "make", "install"
end
test do
(testpath/"test.cpp").write <<~EOS
#include <assert.h>
#include <snappy.h>
#include <string>
using namespace std;
using namespace snappy;
int main()
{
string source = "Hello World!";
string compressed, decompressed;
Compress(source.data(), source.size(), &compressed);
Uncompress(compressed.data(), compressed.size(), &decompressed);
assert(source == decompressed);
return 0;
}
EOS
system ENV.cxx, "-std=c++11", "test.cpp", "-L#{lib}", "-lsnappy", "-o", "test"
system "./test"
end
end