aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gsutil.rb
blob: f0f3012d66de1734d1eba6a2f7ca0158301c5f8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

# This is a pure Python formula, but Google suck and won't provide it in PYPI.
# So fearlessly we elect to maintain the formula. References:
# https://github.com/mxcl/homebrew/pull/7484
# https://github.com/mxcl/homebrew/issues/2560

class Gsutil < Formula
  homepage 'http://code.google.com/p/gsutil/'
  url 'http://gsutil.googlecode.com/files/gsutil_01-13-2012.tar.gz'
  sha1 'fe1aa1c5fe5b3d7d099fc37367d8fc15acb99435'
  version '2012-01-13'

  def install
    libexec.install Dir["*"]
    bin.install_symlink libexec+'gsutil'
  end

  def test
    system "#{bin}/gsutil"
  end
end