aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/plantuml.rb
blob: ca24faa10cc21fc67a6b7d382026c48e9fdc5763 (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.8018.jar"
  sha1 "0a2e88c09812b6636bcb5acb6507a0462dbe08af"

  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