blob: 58ef772ff76b99f5e45b33bebcf456bb6888a219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Gradle < Formula
homepage 'http://www.gradle.org/'
url 'http://services.gradle.org/distributions/gradle-1.10-bin.zip'
sha1 'f911beeff25ebbb7b4af3092dd7f0c93019aef17'
def install
libexec.install %w[bin lib]
bin.install_symlink libexec+'bin/gradle'
end
end
|