2012-12-19 10:59:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gcutil < Formula
|
|
|
|
homepage 'https://developers.google.com/compute/docs/gcutil/'
|
2013-06-04 22:56:24 +00:00
|
|
|
url 'https://google-compute-engine-tools.googlecode.com/files/gcutil-1.8.1.tar.gz'
|
|
|
|
sha1 '746f2d30f2bd380c9c459c0ece16937caf032b8e'
|
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
|