homebrew-core/Formula/groovy.rb
mystix 418e86f87e Updated Groovy formula to 1.7.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>

I went ahead and dropped the @s and reordered the delete
to happen before install.

Also, the "version" was redundant.
2010-02-26 09:09:41 -08:00

12 lines
288 B
Ruby

require 'formula'
class Groovy <Formula
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.7.1.zip'
md5 '65f522de612ca56e815992fffbf10d12'
homepage 'http://groovy.codehaus.org/'
def install
rm_f Dir["bin/*.bat"]
prefix.install %w[bin conf lib]
end
end