2010-08-11 21:06:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Antlr < Formula
|
|
|
|
homepage 'http://www.antlr.org/'
|
2013-07-16 21:26:25 +00:00
|
|
|
url 'http://www.antlr.org/download/antlr-4.1-complete.jar'
|
|
|
|
sha1 '2f80d904ab786d0616560085d30d402e90b9880a'
|
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
|