homebrew-core/Formula/gcutil.rb
Diwaker Gupta 312fb2b667 gcutil 1.7.1
Closes Homebrew/homebrew#18086.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-02-26 17:31:27 -06:00

16 lines
399 B
Ruby

require 'formula'
class Gcutil < Formula
homepage 'https://developers.google.com/compute/docs/gcutil/'
url 'https://google-compute-engine-tools.googlecode.com/files/gcutil-1.7.1.tar.gz'
sha1 'af8982053b1e4836f84b9826aabcdcf933d37dba'
def install
libexec.install 'gcutil', 'lib'
bin.install_symlink libexec/"gcutil"
end
def test
system "#{bin}/gcutil", "version"
end
end