class Spdlog < Formula desc "Super fast C++ logging library" homepage "https://github.com/gabime/spdlog" url "https://github.com/gabime/spdlog/archive/v0.16.1.tar.gz" sha256 "733260e1fbdcf1b3dc307fc585e4476240026de8be28eb905731d2ab0942deae" head "https://github.com/gabime/spdlog.git" bottle do cellar :any_skip_relocation sha256 "548863381090cb50d7074dad60c196ecd4af9c0144ea02afa00ffb814630b2a5" => :high_sierra sha256 "548863381090cb50d7074dad60c196ecd4af9c0144ea02afa00ffb814630b2a5" => :sierra sha256 "548863381090cb50d7074dad60c196ecd4af9c0144ea02afa00ffb814630b2a5" => :el_capitan end depends_on "cmake" => :build needs :cxx11 def install ENV.cxx11 mkdir "spdlog-build" do args = std_cmake_args args << "-Dpkg_config_libdir=#{lib}" << ".." system "cmake", *args system "make", "install" end end test do (testpath/"test.cpp").write <<~EOS #include "spdlog/spdlog.h" #include #include int main() { auto console = spdlog::stdout_logger_mt("console"); } EOS system ENV.cxx, "-std=c++11", "test.cpp", "-I#{include}", "-o", "test" system "./test" end end