homebrew-core/Formula/plantuml.rb
Baptiste Fontaine ea1fc1960c plantuml 7987
Closes Homebrew/homebrew#25090.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-12-12 08:52:30 -08:00

19 lines
428 B
Ruby

require 'formula'
class Plantuml < Formula
homepage 'http://plantuml.sourceforge.net/'
url 'http://sourceforge.net/projects/plantuml/files/plantuml.7987.jar'
sha1 '69beeb97a982b71fefd5ec5637de18b498910b13'
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