2012-12-19 10:59:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gcutil < Formula
|
|
|
|
homepage 'https://developers.google.com/compute/docs/gcutil/'
|
2014-01-06 08:35:14 +00:00
|
|
|
url 'https://dl.google.com/dl/cloudsdk/release/artifacts/gcutil-1.13.0.zip'
|
|
|
|
sha1 'c7a5cf7f5e0aa5e1eff20147532a320a8684ae45'
|
2012-12-19 10:59:03 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install 'gcutil', 'lib'
|
|
|
|
bin.install_symlink libexec/"gcutil"
|
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-12-19 10:59:03 +00:00
|
|
|
system "#{bin}/gcutil", "version"
|
|
|
|
end
|
|
|
|
end
|