homebrew-core/Formula/plantuml.rb

20 lines
432 B
Ruby
Raw Normal View History

2014-05-21 14:25:01 +00:00
require "formula"
class Plantuml < Formula
2014-05-21 14:25:01 +00:00
homepage "http://plantuml.sourceforge.net/"
url "https://downloads.sourceforge.net/project/plantuml/plantuml.7999.jar"
sha1 "97215ec19934d15e247ff54e25a77a4483608d04"
2014-05-21 14:25:01 +00:00
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