e5f176da6a
Closes Homebrew/homebrew#35064. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
19 lines
432 B
Ruby
19 lines
432 B
Ruby
require "formula"
|
|
|
|
class Plantuml < Formula
|
|
homepage "http://plantuml.sourceforge.net/"
|
|
url "https://downloads.sourceforge.net/project/plantuml/plantuml.8015.jar"
|
|
sha1 "0d28c025ce787d53a1fec4c7cb9105e3613501dc"
|
|
|
|
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
|