aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/repo.rb
blob: 7dbdf5e1e0207bb0c8fad1aaf0a91a0d1303a57b (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.15'
  sha1 '4c06bc2d1466c638f4594d492fd18fd2da38bf5f'
  version '1.15'

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