26 lines
681 B
Ruby
26 lines
681 B
Ruby
class Plantuml < Formula
|
|
desc "Draw UML diagrams"
|
|
homepage "https://plantuml.com/"
|
|
url "https://downloads.sourceforge.net/project/plantuml/1.2018.14/plantuml.1.2018.14.jar"
|
|
sha256 "1e9884f75194e955d7c3cbd47675985e1aaae3a9d9e79ce0f170f0226ecc9a2a"
|
|
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
|