2009-11-11 18:09:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Groovy <Formula
|
2010-04-18 08:08:12 +00:00
|
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.7.2.zip'
|
|
|
|
md5 'e45acf74926681fa0e335d19a8e7dbd2'
|
2010-02-26 16:44:49 +00:00
|
|
|
homepage 'http://groovy.codehaus.org/'
|
2009-11-11 18:09:31 +00:00
|
|
|
|
|
|
|
def install
|
2010-02-26 16:44:49 +00:00
|
|
|
rm_f Dir["bin/*.bat"]
|
2009-11-11 18:09:31 +00:00
|
|
|
prefix.install %w[bin conf lib]
|
|
|
|
end
|
|
|
|
end
|