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

class Antlr < Formula
  homepage "http://www.antlr.org/"
  url "http://www.antlr.org/download/antlr-4.2.2-complete.jar"
  sha1 "97b3117463b6beda300ee7a297a31b71db9aea2b"

  def install
    prefix.install "antlr-#{version}-complete.jar"
    bin.write_jar_script prefix/"antlr-#{version}-complete.jar", "antlr4"
    (bin+"grun").write <<-EOS.undent
      #!/bin/bash
      java -classpath #{prefix}/antlr-#{version}-complete.jar:. org.antlr.v4.runtime.misc.TestRig "$@"
    EOS
  end
end