blob: 8a4543310a3e4eda3e43bcb6ee8b69ee8364820e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Antlr < Formula
homepage 'http://www.antlr.org/'
url "http://www.antlr.org/download/antlr-3.4-complete.jar"
md5 '1b91dea1c7d480b3223f7c8a9aa0e172'
def install
prefix.install "antlr-3.4-complete.jar"
(bin+"antlr-3.4").write <<-EOS.undent
#!/bin/sh
java -jar #{prefix}/antlr-3.4-complete.jar "$@"
EOS
end
end
|