homebrew-core/Formula/plantuml.rb
Jesse Tan 10094290c2 plantuml 1.2019.13
Closes #48223.

Signed-off-by: Alexander Bayandin <a.bayandin@gmail.com>
2019-12-23 11:01:53 +00:00

29 lines
778 B
Ruby

class Plantuml < Formula
desc "Draw UML diagrams"
homepage "https://plantuml.com/"
url "https://downloads.sourceforge.net/project/plantuml/1.2019.13/plantuml.1.2019.13.jar"
sha256 "7fa2c92fb9c57b37d97c01457e02e93e1e90ffbd263264ae3d3a9e1a2d830a65"
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
if [[ "$*" != *"-gui"* ]]; then
VMARGS="-Djava.awt.headless=true"
fi
GRAPHVIZ_DOT="#{Formula["graphviz"].opt_bin}/dot" exec java $VMARGS -jar #{libexec}/#{jar} "$@"
EOS
chmod 0555, bin/"plantuml"
end
test do
system bin/"plantuml", "-testdot"
end
end