blob: 22fad5341d1e6a635741e3b8d304439d65773c5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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://commondatastorage.googleapis.com/pub/gsutil_3.9.tar.gz'
sha1 '33e728bc5d6d26c81737446843ffa0f9a5dbc8b5'
def install
libexec.install Dir["*"]
bin.install_symlink libexec/'gsutil'
end
def test
system "#{bin}/gsutil"
end
end
|