homebrew-core/Formula/gradle.rb

29 lines
611 B
Ruby
Raw Normal View History

2010-06-15 17:26:59 +00:00
require 'formula'
class Gradle <Formula
homepage 'http://www.gradle.org/'
url 'http://dist.codehaus.org/gradle/gradle-0.8-all.zip'
head 'http://dist.codehaus.org/gradle/gradle-0.9-rc-3-all.zip'
if ARGV.build_head?
version '0.9-rc-3'
md5 'ec578c2069a30fb8b5f669df6a72034d'
else
version '0.8'
md5 '73a0ed51b6ec00a7d3a9d242d51aae60'
end
2010-06-15 17:26:59 +00:00
def install
rm_f Dir["bin/*.bat"]
if ARGV.build_head?
libexec.install %w[bin lib]
else
libexec.install %w[bin lib gradle-imports plugin.properties]
end
2010-06-15 17:26:59 +00:00
bin.mkpath
ln_s libexec+('bin/gradle'), bin
end
end