29 lines
1.1 KiB
Bash
29 lines
1.1 KiB
Bash
# Template file for 'aws-cli'
|
|
pkgname=aws-cli
|
|
version=1.22.88
|
|
revision=3
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools"
|
|
depends="groff python3-botocore python3-s3transfer python3-colorama
|
|
python3-rsa python3-yaml python3-docutils"
|
|
checkdepends="$depends python3-pytest"
|
|
short_desc="Universal Command Line Interface for Amazon Web Services"
|
|
maintainer="Robert Lowry <bobertlo@gmail.com>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/aws/aws-cli"
|
|
distfiles="https://github.com/aws/aws-cli/archive/${version}.tar.gz"
|
|
checksum=cc0961786a5020fbe4708506e8aa39c90a07199f625e9ac62c1f2d8db7e8bd69
|
|
|
|
do_check() {
|
|
# integration tests want aws credentials, have some other issues not worth fixing
|
|
PATH=$PWD/bin:$PATH PYTHONPATH=$PWD python3 -m pytest tests/unit tests/functional
|
|
}
|
|
|
|
post_install() {
|
|
vinstall bin/aws_bash_completer 644 usr/share/bash-completion/completions aws
|
|
vinstall bin/aws_zsh_completer.sh 644 usr/share/zsh/site-functions _aws
|
|
rm "${DESTDIR}/usr/bin/aws_bash_completer"
|
|
rm "${DESTDIR}/usr/bin/aws_zsh_completer.sh"
|
|
rm "${DESTDIR}/usr/bin/aws.cmd"
|
|
}
|