homebrew-core/Formula/dita-ot.rb
Roger Sheen b4f587c6d8
dita-ot 3.3.2
Closes #40400.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-05-29 14:13:38 +08:00

22 lines
701 B
Ruby

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.3.2/dita-ot-3.3.2.zip"
sha256 "8b74260bcee714e898431bec91abe8fafd9c86410548bf928e6ca289263fc962"
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