File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Template file for 'kustomize'
2+ pkgname=kustomize
3+ version=5.8.1
4+ revision=1
5+ build_style=go
6+ go_import_path="sigs.k8s.io/kustomize/kustomize/v5"
7+ short_desc="Template-free customization of Kubernetes YAML manifests"
8+ maintainer="Aaron Duxler <aaron@duxler.at>"
9+ license="Apache-2.0"
10+ homepage="https://github.com/kubernetes-sigs/kustomize"
11+ distfiles="https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${version}.tar.gz"
12+ checksum=4ea5a974c46ad6efcde4fd9c339ab1bd278a80b6872dda2d1a366936e4638475
13+
14+ do_check() {
15+ cd kustomize
16+ go test -p "$XBPS_MAKEJOBS" ./...
17+ }
18+
19+ post_build() {
20+ for shell in bash fish zsh; do
21+ CGO_ENABLED=0 GOARCH="" go run kustomize/main.go completion "$shell" \
22+ >"completion.$shell"
23+ done
24+ }
25+
26+ post_install() {
27+ for shell in bash fish zsh; do
28+ vcompletion "completion.$shell" "$shell"
29+ done
30+ }
You can’t perform that action at this time.
0 commit comments