diff options
| author | Dimitri Krassovski | 2012-12-19 12:59:03 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-01-17 13:29:28 -0800 | 
| commit | 68e6172c6b45460ccef2009d2f491e2ba2be1ab3 (patch) | |
| tree | 8b8ec278c5098eb1d7925d26e3a598e7450ef768 | |
| parent | 14091074c90c0bdb8c4f78de2b45ff71465ba4fc (diff) | |
| download | homebrew-68e6172c6b45460ccef2009d2f491e2ba2be1ab3.tar.bz2 | |
gcutil 1.5.0
Closes #16650.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/gcutil.rb | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/Library/Formula/gcutil.rb b/Library/Formula/gcutil.rb new file mode 100644 index 000000000..a010540bb --- /dev/null +++ b/Library/Formula/gcutil.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Gcutil < Formula +  homepage 'https://developers.google.com/compute/docs/gcutil/' +  url 'https://google-compute-engine-tools.googlecode.com/files/gcutil-1.5.0.tar.gz' +  sha1 '785290893ab722f2a1510f37982e80e52f9f043a' + +  def install +    libexec.install 'gcutil', 'lib' +    bin.install_symlink libexec/"gcutil" +  end + +  def test +    system "#{bin}/gcutil", "version" +  end +end | 
