homebrew-core/Formula/gradle.rb
Adam Vandenberg 015e9d4cf5 gradle: 1.0-milestone-3
milestone-4 had regressions, so reverting this change.
See: https://github.com/mxcl/homebrew/pull/6873#issuecomment-1854391

This reverts commit cf9db7404f6389dac14e8af3efcf31ca653a76e0.
2011-08-19 12:21:31 -07:00

15 lines
365 B
Ruby

require 'formula'
class Gradle < Formula
homepage 'http://www.gradle.org/'
version '1.0-milestone-3'
url 'http://repo.gradle.org/gradle/distributions/gradle-1.0-milestone-3-all.zip'
md5 'e3e01c894da324654da044089e6842ea'
def install
rm_f Dir["bin/*.bat"]
libexec.install %w[bin lib]
bin.mkpath
ln_s libexec+('bin/gradle'), bin
end
end