30 lines
814 B
Ruby
30 lines
814 B
Ruby
class Plantuml < Formula
|
|
desc "Draw UML diagrams"
|
|
homepage "https://plantuml.com/"
|
|
url "https://downloads.sourceforge.net/project/plantuml/1.2020.15/plantuml.1.2020.15.jar"
|
|
sha256 "1b6903a3a271ed5ce35f6b8ba2ce9cd90a87253f0fc60a7e7ce1e40623117537"
|
|
version_scheme 1
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "graphviz"
|
|
depends_on "openjdk"
|
|
|
|
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 "#{Formula["openjdk"].opt_bin}/java" $VMARGS -jar #{libexec}/#{jar} "$@"
|
|
EOS
|
|
chmod 0755, bin/"plantuml"
|
|
end
|
|
|
|
test do
|
|
system bin/"plantuml", "-testdot"
|
|
end
|
|
end
|