aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/repo.rb
blob: 92cf392a584e364f8a2600ef1866da98fc6409d4 (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.14'
  sha1 '29ba4221d4fccdfa8d87931cd73466fdc24040b5'
  version '1.14'

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