aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gradle.rb
blob: 7f87d4501885bfb08ddaddc43c9ccfd2738dcdea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Gradle < Formula
  homepage 'http://www.gradle.org/'
  url 'https://downloads.gradle.org/distributions/gradle-2.0-bin.zip'
  sha1 '171d2290257c061a96410297f2596596862a847a'

  def install
    libexec.install %w[bin lib]
    bin.install_symlink libexec+'bin/gradle'
  end
end