homebrew-core/Formula/plantuml.rb
Marcelo Da Cruz Pinto e5f176da6a PlantUML 8015
Closes Homebrew/homebrew#35064.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-12-17 20:51:12 -05:00

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