Skip to content

Commit

Permalink
antlr: match Homebrew style guide
Browse files Browse the repository at this point in the history
  • Loading branch information
adamv committed Jun 14, 2011
1 parent aabe2d8 commit 9c56fd8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Library/Formula/antlr.rb
@@ -1,14 +1,16 @@
require 'formula'

class Antlr < Formula
url "http://www.antlr.org/download/antlr-3.3-complete.jar"
version '3.3'
url "http://www.antlr.org/download/antlr-#{version}-complete.jar"
homepage 'http://www.antlr.org/'
md5 '238becce7da69f7be5c5b8a65558cf63'

def install
prefix.install "antlr-#{version}-complete.jar"
#Add an executable shell-script
(bin + "antlr-#{version}").write "#!/bin/sh\njava -jar #{prefix}/antlr-#{version}-complete.jar $*"
prefix.install "antlr-3.3-complete.jar"
(bin+"antlr-3.3").write <<-EOS.undent
#!/bin/sh
java -jar #{prefix}/antlr-3.3-complete.jar "$@"
EOS
end
end

0 comments on commit 9c56fd8

Please sign in to comment.