aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/plantuml.rb
blob: d7424152f2eb5e67c29faefee0224f686681e9b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require "formula"

class Plantuml < Formula
  homepage "http://plantuml.sourceforge.net/"
  url "https://downloads.sourceforge.net/project/plantuml/plantuml.7999.jar"
  sha1 "97215ec19934d15e247ff54e25a77a4483608d04"

  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