2009-11-11 18:09:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Groovy < Formula
|
2010-02-26 16:44:49 +00:00
|
|
|
homepage 'http://groovy.codehaus.org/'
|
2011-04-27 14:36:48 +00:00
|
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.8.0.zip'
|
|
|
|
sha1 'e343d18b6fe241f18533ee8b77945e7a380778bd'
|
2009-11-11 18:09:31 +00:00
|
|
|
|
|
|
|
def install
|
2010-02-26 16:44:49 +00:00
|
|
|
rm_f Dir["bin/*.bat"]
|
2010-09-29 20:56:20 +00:00
|
|
|
|
|
|
|
prefix.install %w{ LICENSE.txt NOTICE.txt }
|
|
|
|
libexec.install %w[bin conf lib]
|
|
|
|
|
|
|
|
bin.mkpath
|
|
|
|
Dir["#{libexec}/bin/*"].each do |f|
|
|
|
|
next unless File.extname(f).empty?
|
|
|
|
ln_s f, bin+File.basename(f)
|
|
|
|
end
|
2009-11-11 18:09:31 +00:00
|
|
|
end
|
2011-04-27 20:18:01 +00:00
|
|
|
|
|
|
|
def caveats
|
|
|
|
<<-EOS.undent
|
|
|
|
You should set the environment variable GROOVY_HOME to
|
|
|
|
#{libexec}
|
|
|
|
EOS
|
|
|
|
end
|
2009-11-11 18:09:31 +00:00
|
|
|
end
|