blob: 5572634c175620e56f20d615fbf756b159127fed (
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.4-complete.jar"
sha1 '5cab59d859caa6598e28131d30dd2e89806db57f'
def install
prefix.install "antlr-3.4-complete.jar"
bin.write_jar_script prefix/"antlr-3.4-complete.jar", "antlr-3.4"
end
end
|