40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
class Inja < Formula
|
|
desc "Template engine for modern C++"
|
|
homepage "https://pantor.github.io/inja/"
|
|
url "https://github.com/pantor/inja/archive/v3.0.0.tar.gz"
|
|
sha256 "99cdb0d90ab1adff9ec63b40a867ec14e1b217fe2d7ac07a6124de201de4ffd0"
|
|
license "MIT"
|
|
head "https://github.com/pantor/inja.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "2d2e56f3daecf8306ebb2df948024c6ce7115e26cc160496538ca05900c6d8a5" => :catalina
|
|
sha256 "22ea5918d1033829ab77202e877ce6f79d0bcb965feee60081004654a3ea60b4" => :mojave
|
|
sha256 "9a67ee6245a22e809dd4c7fc29227b42bbc443f58bb24fdc7258929a99c7d0f3" => :high_sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "nlohmann-json"
|
|
|
|
def install
|
|
system "cmake", ".", "-DBUILD_TESTING=OFF", "-DBUILD_BENCHMARK=OFF", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <inja/inja.hpp>
|
|
|
|
int main() {
|
|
nlohmann::json data;
|
|
data["name"] = "world";
|
|
|
|
inja::render_to(std::cout, "Hello {{ name }}!\\n", data);
|
|
}
|
|
EOS
|
|
system ENV.cxx, "-std=c++11", "test.cpp", "-o", "test",
|
|
"-I#{include}", "-I#{Formula["nlohmann-json"].opt_include}"
|
|
assert_equal "Hello world!\n", shell_output("./test")
|
|
end
|
|
end
|