class DitaOt < Formula desc "DITA Open Toolkit is an implementation of the OASIS DITA specification" homepage "https://www.dita-ot.org/" url "https://github.com/dita-ot/dita-ot/releases/download/3.4/dita-ot-3.4.zip" sha256 "9fc1e08079bd419f4c5be49e5f22a2261403262231a832340c8c948a4d48f4cd" bottle :unneeded depends_on :java => "1.8+" def install rm_f Dir["bin/*.bat", "config/env.bat", "startcmd.*"] libexec.install Dir["*"] bin.install_symlink libexec/"bin/dita" end test do system bin/"dita", "--input=#{libexec}/docsrc/site.ditamap", "--format=html5", "--output=#{testpath}/out" assert_predicate testpath/"out/index.html", :exist? end end