53 lines
1.9 KiB
Ruby
53 lines
1.9 KiB
Ruby
class Snappystream < Formula
|
|
desc "C++ snappy stream realization (compatible with snappy)"
|
|
homepage "https://github.com/hoxnox/snappystream"
|
|
url "https://github.com/hoxnox/snappystream/archive/1.0.0.tar.gz"
|
|
sha256 "a50a1765eac1999bf42d0afd46d8704e8c4040b6e6c05dcfdffae6dcd5c6c6b8"
|
|
license "Apache-2.0"
|
|
head "https://github.com/hoxnox/snappystream.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "a17c5546b26c7de0636bcbf8effce43c7c1735ccd0b4612684505c39421b350d" => :catalina
|
|
sha256 "3b4546ed797d251364320b9da77640c4980e913bb08b3376b7394a65833d8aa4" => :mojave
|
|
sha256 "75b9c1672f271ec42ca15cb6fa9b327bc3f081a2497804142961633a0ca57884" => :high_sierra
|
|
sha256 "0993bdf488fd8a1d59de3b5ecf3080d7ff4a6dee895dd801aff3687c5809d0ae" => :sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "snappy"
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args, "-DBUILD_TESTS=ON"
|
|
system "make", "all", "test", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cxx").write <<~EOS
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <iterator>
|
|
#include <algorithm>
|
|
#include <snappystream.hpp>
|
|
|
|
int main()
|
|
{
|
|
{ std::ofstream ofile("snappy-file.dat");
|
|
snappy::oSnappyStream osnstrm(ofile);
|
|
std::cin >> std::noskipws;
|
|
std::copy(std::istream_iterator<char>(std::cin), std::istream_iterator<char>(), std::ostream_iterator<char>(osnstrm));
|
|
}
|
|
{ std::ifstream ifile("snappy-file.dat");
|
|
snappy::iSnappyStream isnstrm(ifile);
|
|
isnstrm >> std::noskipws;
|
|
std::copy(std::istream_iterator<char>(isnstrm), std::istream_iterator<char>(), std::ostream_iterator<char>(std::cout));
|
|
}
|
|
}
|
|
EOS
|
|
system ENV.cxx, "test.cxx", "-o", "test",
|
|
"-L#{Formula["snappy"].opt_lib}", "-lsnappy",
|
|
"-L#{lib}", "-lsnappystream"
|
|
system "./test < #{__FILE__} > out.dat && diff #{__FILE__} out.dat"
|
|
end
|
|
end
|