mirror of
https://github.com/ivabus/pantry
synced 2024-11-09 18:15:18 +03:00
feat(kpt.dev): add kpt package to pantry (#3667)
* feat(kpt.dev): add kpt package to pantry * build from source --------- Co-authored-by: Jacob Heider <jacob@pkgx.dev>
This commit is contained in:
parent
6fa71f55b7
commit
4d0999fe07
31
projects/kpt.dev/package.yml
Normal file
31
projects/kpt.dev/package.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
# https://kpt.dev/
|
||||
|
||||
distributable:
|
||||
url: https://github.com/kptdev/kpt/archive/refs/tags/v{{version}}.tar.gz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
github: kptdev/kpt/tags
|
||||
|
||||
dependencies:
|
||||
git-scm.org: '*'
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
go.dev: ^1.14
|
||||
script: go build -v -trimpath -ldflags="$LDFLAGS" -o "{{prefix}}/bin/kpt" .
|
||||
env:
|
||||
LDFLAGS:
|
||||
- -s
|
||||
- -w
|
||||
- -X github.com/GoogleContainerTools/kpt/run.version={{version}}
|
||||
linux:
|
||||
# or segmentation fault
|
||||
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
||||
LDFLAGS:
|
||||
- -buildmode=pie
|
||||
|
||||
provides:
|
||||
- bin/kpt
|
||||
|
||||
test: test "$(kpt version)" = {{version}}
|
Loading…
Reference in a new issue