2009-11-11 18:09:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Groovy <Formula
|
2010-09-20 14:56:39 +00:00
|
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.7.5.zip'
|
|
|
|
md5 '77538791a644bb3129662dbf5db006a4'
|
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"]
|
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
|
|
|
|
end
|