class Pegtl < Formula desc "Parsing Expression Grammar Template Library" homepage "https://github.com/taocpp/PEGTL" url "https://github.com/taocpp/PEGTL/archive/2.3.3.tar.gz" sha256 "a734e4e7a913e1243bc066a50a8448c241b036e017a26c6d00d366c11ac7dd05" 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