blob: 8cb70c5d6bb1d081a49f10c54047ab94f3ad411f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Antlr < Formula
homepage 'http://www.antlr.org/'
url 'http://www.antlr.org/download/antlr-3.5-complete.jar'
sha1 'f552792c4cdceb8c02fa1354e773349763267ab9'
def install
prefix.install "antlr-3.5-complete.jar"
bin.write_jar_script prefix/"antlr-3.5-complete.jar", "antlr-3.4"
end
end
|