blob: f256b1cdbc5f77254c73a75ea7aef18177b13bd6 (
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.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
  |