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.8039.jar"
|
|
sha256 "a82d120fbb5109b6187f53bb8f9c479706ba305352e7bcaaecef5d2b3fed0470"
|
|
|
|
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
|