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-11-13 23:02:40 +00:00
|
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.8.4.zip'
|
|
|
|
md5 '3ecfe663fcdc1d9b54b16e5eabe54c90'
|
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
|
2011-10-17 16:41:35 +00:00
|
|
|
end
|