homebrew-core/Formula/plantuml.rb

36 lines
937 B
Ruby

class Plantuml < Formula
desc "Draw UML diagrams"
homepage "https://plantuml.com/"
url "https://downloads.sourceforge.net/project/plantuml/1.2021.1/plantuml.1.2021.1.jar"
sha256 "14e33e85aa35971e8424c71c6e12f3bd5566091dc5fe28074c6375be185d99d4"
license "GPL-3.0-or-later"
version_scheme 1
livecheck do
url :stable
regex(%r{url=.*?/plantuml[._-]v?(\d+(?:\.\d+)+)\.t}i)
end
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