33 lines
869 B
Ruby
33 lines
869 B
Ruby
class CppGsl < Formula
|
|
desc "Microsoft's C++ Guidelines Support Library"
|
|
homepage "https://github.com/Microsoft/GSL"
|
|
url "https://github.com/Microsoft/GSL/archive/v4.0.0.tar.gz"
|
|
sha256 "f0e32cb10654fea91ad56bde89170d78cfbf4363ee0b01d8f097de2ba49f6ce9"
|
|
license "MIT"
|
|
revision 1
|
|
head "https://github.com/Microsoft/GSL.git", branch: "main"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "5bda1ae8723c554253565ae7f67f0cbf4e7f902722c36c2b0537f1ec953ecfd0"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
system "cmake", ".", "-DGSL_TEST=false", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <gsl/gsl>
|
|
int main() {
|
|
gsl::span<int> z;
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cxx, "test.cpp", "-o", "test", "-std=c++14"
|
|
system "./test"
|
|
end
|
|
end
|