homebrew-core/Formula/gcutil.rb
Tryn Mirell 9f01030987 gcutil 1.8.0
Closes Homebrew/homebrew#19852.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-05-15 20:38:15 -05: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.8.0.tar.gz'
sha1 '03ebba7ea4569a4e8f853a6226ec51999f7064b5'
def install
libexec.install 'gcutil', 'lib'
bin.install_symlink libexec/"gcutil"
end
def test
system "#{bin}/gcutil", "version"
end
end