homebrew-core/Formula/antlr.rb

17 lines
503 B
Ruby
Raw Normal View History

2014-05-20 00:39:55 +00:00
require "formula"
class Antlr < Formula
2014-05-20 00:39:55 +00:00
homepage "http://www.antlr.org/"
2014-06-23 01:34:33 +00:00
url "http://www.antlr.org/download/antlr-4.3-complete.jar"
sha1 "173cf3165fdc54dcb9d2c6bc30c9d2c178f348bc"
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"
(bin+"grun").write <<-EOS.undent
#!/bin/bash
java -classpath #{prefix}/antlr-#{version}-complete.jar:. org.antlr.v4.runtime.misc.TestRig "$@"
EOS
end
2011-03-10 05:11:03 +00:00
end