40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
class Fmt < Formula
|
|
desc "Open-source formatting library for C++"
|
|
homepage "https://fmtlib.github.io/"
|
|
url "https://github.com/fmtlib/fmt/archive/4.0.0.tar.gz"
|
|
sha256 "35300a0d356529447a79ed5ccf419239d8b34f916e5d4625f046fd37afa3650a"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "bbc85439060bd61a32e51f81cc9f85a9dffa33ce469be41202267e6389886e64" => :sierra
|
|
sha256 "834e3662962513589804942894ced8d5dc5dfbb98d557060da8b6b071acba6ef" => :el_capitan
|
|
sha256 "5f6b23785f1fa87dce60777a0ed77381d7307b9116fdf60e0aa2dbb23e542852" => :yosemite
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <fmt/format.h>
|
|
int main()
|
|
{
|
|
std::string str = fmt::format("The answer is {}", 42);
|
|
std::cout << str;
|
|
return 0;
|
|
}
|
|
EOS
|
|
|
|
system ENV.cxx, "test.cpp", "-o", "test",
|
|
"-I#{include}",
|
|
"-L#{lib}",
|
|
"-lfmt"
|
|
assert_equal "The answer is 42", shell_output("./test")
|
|
end
|
|
end
|