2010-08-11 21:06:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Antlr < Formula
|
|
|
|
homepage 'http://www.antlr.org/'
|
2013-01-21 21:57:01 +00:00
|
|
|
url 'http://www.antlr.org/download/antlr-4.0-complete.jar'
|
|
|
|
sha1 '6186fb2d530fa822251224250cbf55a238f248ac'
|
2010-08-11 21:06:11 +00:00
|
|
|
|
|
|
|
def install
|
2013-01-21 21:57:01 +00:00
|
|
|
prefix.install "antlr-4.0-complete.jar"
|
|
|
|
bin.write_jar_script prefix/"antlr-4.0-complete.jar", "antlr4"
|
2010-08-11 21:06:11 +00:00
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|