Created
February 18, 2016 21:29
-
-
Save whoisjake/56c8d887c12bb592d546 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Gort < Formula | |
desc "GORT is a Command Line Toolkit for RobotOps" | |
homepage "http://gort.io/" | |
version "0.5.2" | |
if MacOS.prefer_64_bit? | |
url "https://s3.amazonaws.com/gort-io/0.5.2/gort_0.5.2_darwin_amd64.zip" | |
sha256 "dbcc1f35017ec452986798468631b47350b5bc6dc33e25e812c94c74438f190a" | |
else | |
url "https://s3.amazonaws.com/gort-io/0.5.2/gort_0.5.2_darwin_386.zip" | |
sha256 "c22e022326774ea0b6a6d65fdb57ad2bf4c6e4fbc4221a26b46b0d6f8fa09822" | |
end | |
bottle :unneeded | |
def install | |
bin.install "gort" | |
end | |
test do | |
system "#{bin}/gort", "--version" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment