5f4c54327b
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
478 B
Ruby
20 lines
478 B
Ruby
require 'formula'
|
|
|
|
class Groovy <Formula
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.7.7.zip'
|
|
md5 '70449313b20b0592f93f8379e22f9ff0'
|
|
homepage 'http://groovy.codehaus.org/'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
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
|
|
end
|
|
end
|