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

class Repo < Formula
  homepage 'http://source.android.com/source/git-repo.html'
  url 'http://git-repo.googlecode.com/files/repo-1.17'
  sha1 'ddd79b6d5a7807e911b524cb223bc3544b661c28'
  version '1.17'

  def install
    bin.install "repo-#{version}" => 'repo'
  end
end