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-03-18 13:28:43 +00:00
|
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.7.10.zip'
|
|
|
|
sha1 '1d869e4ebb822ba5c74d7b06a5c61b94bfc1538b'
|
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
|