44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
class RangeV3 < Formula
|
|
desc "Experimental range library for C++14/17/20"
|
|
homepage "https://ericniebler.github.io/range-v3/"
|
|
url "https://github.com/ericniebler/range-v3/archive/0.11.0.tar.gz"
|
|
sha256 "376376615dbba43d3bef75aa590931431ecb49eb36d07bb726a19f680c75e20c"
|
|
license "BSL-1.0"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "bffbe0872b344db9b7838d3a63b10e95df57385d26bfaeffc4da5a3d940893c6" => :catalina
|
|
sha256 "bffbe0872b344db9b7838d3a63b10e95df57385d26bfaeffc4da5a3d940893c6" => :mojave
|
|
sha256 "bffbe0872b344db9b7838d3a63b10e95df57385d26bfaeffc4da5a3d940893c6" => :high_sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
system "cmake", ".",
|
|
"-DRANGE_V3_TESTS=OFF",
|
|
"-DRANGE_V3_HEADER_CHECKS=OFF",
|
|
"-DRANGE_V3_EXAMPLES=OFF",
|
|
"-DRANGE_V3_PERF=OFF",
|
|
*std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <range/v3/all.hpp>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
int main() {
|
|
std::string s{ "hello" };
|
|
ranges::for_each( s, [](char c){ std::cout << c << " "; });
|
|
std::cout << std::endl;
|
|
}
|
|
EOS
|
|
system ENV.cc, "-std=c++14", "-stdlib=libc++", "-lc++",
|
|
"-o", "test", "test.cpp"
|
|
assert_equal "h e l l o \n", shell_output("./test")
|
|
end
|
|
end
|