42 lines
1.5 KiB
Ruby
42 lines
1.5 KiB
Ruby
class Awscli < Formula
|
|
include Language::Python::Virtualenv
|
|
|
|
desc "Official Amazon AWS command-line interface"
|
|
homepage "https://aws.amazon.com/cli/"
|
|
url "https://github.com/aws/aws-cli/archive/1.11.66.tar.gz"
|
|
sha256 "2c1da406203e0a9b5c717004bd463228e4fa4fa8fe47208f0e1836c02bee6f60"
|
|
head "https://github.com/aws/aws-cli.git", :branch => "develop"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "468ac1834fa1b4fcb096995c6e46c4b364411e5505b9ce34cc33f7df1bb26d34" => :sierra
|
|
sha256 "3db97af7b103cc78d28a16909786fc4b2a6ac32be7904154d62beb889bcc6601" => :el_capitan
|
|
sha256 "add57e729c11e004960a3ac51ee069cf62bd37a66f680b185a10b44408c2dc03" => :yosemite
|
|
end
|
|
|
|
# Use :python on Lion to avoid urllib3 warning
|
|
# https://github.com/Homebrew/homebrew/pull/37240
|
|
depends_on :python if MacOS.version <= :lion
|
|
|
|
def install
|
|
venv = virtualenv_create(libexec)
|
|
system libexec/"bin/pip", "install", "-v", "--no-binary", ":all:",
|
|
"--ignore-installed", buildpath
|
|
system libexec/"bin/pip", "uninstall", "-y", "awscli"
|
|
venv.pip_install_and_link buildpath
|
|
pkgshare.install "awscli/examples"
|
|
|
|
bash_completion.install "bin/aws_bash_completer"
|
|
zsh_completion.install "bin/aws_zsh_completer.sh" => "_aws"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
The "examples" directory has been installed to:
|
|
#{HOMEBREW_PREFIX}/share/awscli/examples
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match "topics", shell_output("#{bin}/aws help")
|
|
end
|
|
end
|