pantry/projects/helm.sh/package.yml
Jacob Heider 571f9df20e fix(helm)
closes #3998
2023-11-08 18:31:15 -05:00

29 lines
637 B
YAML

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:
script:
- helm create foo
- test -d "foo/charts"
- helm version | grep "Version:\"{{version}}\""