mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
37bc4ba445
* +localstack.cloud/cli -- The LocalStack CLI packaged using pyinstaller * +localstack.cloud/cli -- add missing build dependency gnu.org/binutils
28 lines
524 B
YAML
28 lines
524 B
YAML
# https://localstack.cloud/
|
|
|
|
distributable:
|
|
url: https://github.com/localstack/localstack-cli/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: localstack/localstack-cli
|
|
strip: /^v/
|
|
|
|
build:
|
|
dependencies:
|
|
python.org: ^3.11
|
|
gnu.org/make: "*"
|
|
gnu.org/binutils: "*"
|
|
script: |
|
|
make venv
|
|
make all
|
|
mkdir -p "{{ prefix }}"/bin
|
|
mv dist-bin/localstack "{{ prefix }}"/bin
|
|
|
|
provides:
|
|
- bin/localstack
|
|
|
|
test:
|
|
script:
|
|
test "$(localstack --version)" = {{version}}
|