2012-12-19 10:59:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gcutil < Formula
|
|
|
|
homepage 'https://developers.google.com/compute/docs/gcutil/'
|
2013-03-13 19:22:12 +00:00
|
|
|
url 'https://google-compute-engine-tools.googlecode.com/files/gcutil-1.7.2.tar.gz'
|
|
|
|
sha1 '8bcff6426b107d54873844d73d4af22a3dc89155'
|
2012-12-19 10:59:03 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install 'gcutil', 'lib'
|
|
|
|
bin.install_symlink libexec/"gcutil"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/gcutil", "version"
|
|
|
|
end
|
|
|
|
end
|