aff021c13e
Update to plantuml-8037 released a few days ago A few days ago version plantuml-8037 was released. This will upgrade to that version. Changed both url and sha256. Closes Homebrew/homebrew#49928. Signed-off-by: Andrew Janke <andrew@apjanke.net>
20 lines
486 B
Ruby
20 lines
486 B
Ruby
class Plantuml < Formula
|
|
desc "Draw UML diagrams"
|
|
homepage "http://plantuml.sourceforge.net/"
|
|
url "https://downloads.sourceforge.net/project/plantuml/plantuml.8037.jar"
|
|
sha256 "1e15fad64585d6e13735bb635e4137fb4629fdddc4f4340c9d4a5803af629cd6"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "graphviz"
|
|
|
|
def install
|
|
jar = "plantuml.#{version}.jar"
|
|
prefix.install jar
|
|
bin.write_jar_script prefix/jar, "plantuml"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/plantuml", "-testdot"
|
|
end
|
|
end
|