65 lines
2.1 KiB
Ruby
65 lines
2.1 KiB
Ruby
class Spdlog < Formula
|
|
desc "Super fast C++ logging library"
|
|
homepage "https://github.com/gabime/spdlog"
|
|
url "https://github.com/gabime/spdlog/archive/v1.8.2.tar.gz"
|
|
sha256 "e20e6bd8f57e866eaf25a5417f0a38a116e537f1a77ac7b5409ca2b180cec0d5"
|
|
license "MIT"
|
|
head "https://github.com/gabime/spdlog.git", branch: "v1.x"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "642108455663ea0eb7bb0d430c82b1dc359b6411f966cafbb0092af775468322"
|
|
sha256 cellar: :any, big_sur: "e3a306a9e37b2fa5d35857daed33e4ebbf0fdb503d0061a1e8ec443521abcf1f"
|
|
sha256 cellar: :any, catalina: "0da73847d24190c8f51d017abab07176f6d609a409c58c0df27d1dcfd1bbd375"
|
|
sha256 cellar: :any, mojave: "40496533a239969ce9da48a76b5db57721eb7fe594e5ab129c9bb6f34281778c"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "fmt"
|
|
|
|
def install
|
|
ENV.cxx11
|
|
|
|
inreplace "include/spdlog/tweakme.h", "// #define SPDLOG_FMT_EXTERNAL", "#define SPDLOG_FMT_EXTERNAL"
|
|
|
|
mkdir "spdlog-build" do
|
|
args = std_cmake_args + %W[
|
|
-Dpkg_config_libdir=#{lib}
|
|
-DSPDLOG_BUILD_BENCH=OFF
|
|
-DSPDLOG_BUILD_TESTS=OFF
|
|
-DSPDLOG_FMT_EXTERNAL=ON
|
|
]
|
|
system "cmake", "..", "-DSPDLOG_BUILD_SHARED=ON", *args
|
|
system "make", "install"
|
|
system "make", "clean"
|
|
system "cmake", "..", "-DSPDLOG_BUILD_SHARED=OFF", *args
|
|
system "make"
|
|
lib.install "libspdlog.a"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include "spdlog/sinks/basic_file_sink.h"
|
|
#include <iostream>
|
|
#include <memory>
|
|
int main()
|
|
{
|
|
try {
|
|
auto console = spdlog::basic_logger_mt("basic_logger", "#{testpath}/basic-log.txt");
|
|
console->info("Test");
|
|
}
|
|
catch (const spdlog::spdlog_ex &ex)
|
|
{
|
|
std::cout << "Log init failed: " << ex.what() << std::endl;
|
|
return 1;
|
|
}
|
|
}
|
|
EOS
|
|
|
|
system ENV.cxx, "-std=c++11", "test.cpp", "-I#{include}", "-L#{Formula["fmt"].opt_lib}", "-lfmt", "-o", "test"
|
|
system "./test"
|
|
assert_predicate testpath/"basic-log.txt", :exist?
|
|
assert_match "Test", (testpath/"basic-log.txt").read
|
|
end
|
|
end
|