homebrew-core/Formula/awscli.rb
2017-06-14 23:32:16 -07:00

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.105.tar.gz"
sha256 "0363e9bb273a9a1b19022142e4b765e0646a30824dc42a06b4b9938e9a9e38fe"
head "https://github.com/aws/aws-cli.git", :branch => "develop"
bottle do
cellar :any_skip_relocation
sha256 "7ab00f40d3acc8cedcf75a3c5a7fd577eca0b533bdf138c324e3a61705fd6152" => :sierra
sha256 "de8fe7a936838a15e54a4f4eaf3f39ebe418586adeac615f312bf2365795d2b2" => :el_capitan
sha256 "4bb02f619eb00517e98f9fa8060e572c3d36664c0d21f8cdc5a6e79be5fe38ae" => :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