homebrew-core/Formula/pegtl.rb
ilovezfs 39be59e816 pegtl 2.5.0
Closes #27362.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2018-05-02 09:25:12 +02:00

19 lines
645 B
Ruby

class Pegtl < Formula
desc "Parsing Expression Grammar Template Library"
homepage "https://github.com/taocpp/PEGTL"
url "https://github.com/taocpp/PEGTL/archive/2.5.0.tar.gz"
sha256 "19381c10034a366cb747080e845650606ebce67e556e7d256a9d73b1fc9b5a0f"
bottle :unneeded
def install
prefix.install "include"
rm "src/example/pegtl/CMakeLists.txt"
(pkgshare/"examples").install (buildpath/"src/example/pegtl").children
end
test do
system ENV.cxx, pkgshare/"examples/hello_world.cpp", "-std=c++11", "-o", "helloworld"
assert_equal "Good bye, homebrew!\n", shell_output("./helloworld 'Hello, homebrew!'")
end
end