blob: 8f30251d660cf4531335ae81ff9db972ca0b340e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Mike Javorski (javmorin) <mike.javorski@gmail.com>
# Contributor: Aaron Miller <aaronm@cldtk.com>
pkgname=aws-sam-cli
pkgver=1.29.0
pkgrel=1
pkgdesc='CLI tool to build, test, debug, and deploy Serverless applications using AWS SAM'
arch=('any')
url='https://github.com/awslabs/aws-sam-cli'
license=('Apache')
depends=('docker' 'python-chevron' 'python-click' 'python-flask' 'python-boto3' 'python-jmespath' 'python-yaml'
'python-cookiecutter' 'python-aws-sam-translator' 'python-docker' 'python-dateparser'
'python-requests' 'python-serverlessrepo' 'python-aws-lambda-builders' 'python-tomlkit' 'python-watchdog')
makedepends=('python-setuptools')
options=(!emptydirs)
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('257a618c446a639563f23d85e19ec5ac52491290602bfe76dfaa587d045575ca')
prepare() {
cd "$pkgname-$pkgver"
}
package() {
cd "$pkgname-$pkgver"
/usr/bin/python setup.py install --root="$pkgdir/" --optimize=1
}
|