homebrew-core/Formula/plantuml.rb
2018-03-13 17:13:41 +10:00

26 lines
679 B
Ruby

class Plantuml < Formula
desc "Draw UML diagrams"
homepage "https://plantuml.com/"
url "https://downloads.sourceforge.net/project/plantuml/1.2018.2/plantuml.1.2018.2.jar"
sha256 "046a7618fead4480fd7e673fc87a6ac28208718b206a6fb65b6f384232d53007"
version_scheme 1
bottle :unneeded
depends_on "graphviz"
depends_on :java
def install
jar = "plantuml.jar"
libexec.install "plantuml.#{version}.jar" => jar
(bin/"plantuml").write <<~EOS
#!/bin/bash
GRAPHVIZ_DOT="#{Formula["graphviz"].opt_bin}/dot" exec java -jar #{libexec}/#{jar} "$@"
EOS
chmod 0555, bin/"plantuml"
end
test do
system bin/"plantuml", "-testdot"
end
end