015e9d4cf5
milestone-4 had regressions, so reverting this change. See: https://github.com/mxcl/homebrew/pull/6873#issuecomment-1854391 This reverts commit cf9db7404f6389dac14e8af3efcf31ca653a76e0.
15 lines
365 B
Ruby
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
|