pantry/projects/helm.sh/package.yml

29 lines
637 B
YAML
Raw Normal View History

distributable:
url: https://github.com/helm/helm/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: helm/helm/releases/tags
provides:
- bin/helm
build:
dependencies:
go.dev: ^1.19
script:
- run: |
sed -i.bak \
-e's/unreleased//g' \
-e's/\(shell find . .* -print\)/\1 | grep -v dev.pkgx./' \
Makefile
rm Makefile.bak
- mkdir -p "{{prefix}}/bin"
- make install VERSION={{version}} INSTALL_PATH="{{prefix}}/bin"
test:
2023-11-09 00:22:04 +03:00
script:
- helm create foo
- test -d "foo/charts"
- helm version | grep "Version:\"{{version}}\""