2012-12-19 10:59:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gcutil < Formula
|
|
|
|
homepage 'https://developers.google.com/compute/docs/gcutil/'
|
2013-06-30 00:23:03 +00:00
|
|
|
url 'https://google-compute-engine-tools.googlecode.com/files/gcutil-1.8.2.tar.gz'
|
|
|
|
sha1 '6213f14cc07e789493bc36fef18c4ea8e6285b64'
|
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
|