homebrew-core/Formula/plantuml.rb
2020-01-17 14:30:44 -05:00

29 lines
776 B
Ruby

class Plantuml < Formula
desc "Draw UML diagrams"
homepage "https://plantuml.com/"
url "https://downloads.sourceforge.net/project/plantuml/1.2020.0/plantuml.1.2020.0.jar"
sha256 "7a9d2d56aeed9381066f98e3cf6450a06258ccfd4bfa7f306a62451e8af470c5"
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