homebrew-core/Formula/gcutil.rb
Andrew Tian bd046c5ea1 gcutil 1.8.1
Closes Homebrew/homebrew#20272.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-04 16:08:49 -07: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.1.tar.gz'
sha1 '746f2d30f2bd380c9c459c0ece16937caf032b8e'
def install
libexec.install 'gcutil', 'lib'
bin.install_symlink libexec/"gcutil"
end
def test
system "#{bin}/gcutil", "version"
end
end