class Carrot2 < Formula desc "Search results clustering engine" homepage "https://project.carrot2.org" url "https://github.com/carrot2/carrot2/releases/download/release%2F3.16.1/carrot2-dcs-3.16.1.zip" sha256 "858f298eafb2546b5a02f133ceb810bae190b183f67e3dfdc8a6aedf3072d489" bottle :unneeded depends_on :java => "1.8+" def install libexec.install Dir["*"] bin.install libexec/"dcs.sh" => "carrot2" inreplace bin/"carrot2", "java", "cd #{libexec} && exec java" end plist_options :manual => "carrot2" def plist; <<~EOS Label #{plist_name} RunAtLoad AbandonProcessGroup WorkingDirectory #{opt_libexec} ProgramArguments #{opt_bin}/carrot2 EOS end test do cp_r Dir["#{prefix}/*"], testpath inreplace testpath/"bin/carrot2", "cd #{libexec}", "cd #{testpath}/libexec" begin pid = fork { exec testpath/"bin/carrot2" } sleep 5 output = shell_output("curl -s -F dcs.c2stream=@#{libexec}/examples/shared/data-mining.xml http://localhost:8080/dcs/rest") assert_match /data mining/m, output ensure Process.kill "INT", pid end end end