2010-08-11 21:06:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Antlr < Formula
|
|
|
|
homepage 'http://www.antlr.org/'
|
2014-02-16 03:06:12 +00:00
|
|
|
url 'http://www.antlr.org/download/antlr-4.2-complete.jar'
|
|
|
|
sha1 '2ca46f6c3fee3cde543ec21a800805e9432acab7'
|
2010-08-11 21:06:11 +00:00
|
|
|
|
|
|
|
def install
|
2013-07-17 00:44:03 +00:00
|
|
|
prefix.install "antlr-#{version}-complete.jar"
|
|
|
|
bin.write_jar_script prefix/"antlr-#{version}-complete.jar", "antlr4"
|
2010-08-11 21:06:11 +00:00
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|