Skip to content

Commit 1c6ec08

Browse files
committed
New package: kustomize-5.8.1
1 parent 3004512 commit 1c6ec08

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

srcpkgs/kustomize/template

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
post_build() {
15+
cd kustomize
16+
for shell in bash fish zsh; do
17+
CGO_ENABLED=0 GOARCH="" go run main.go completion "$shell" \
18+
>"../completion.$shell"
19+
done
20+
cd ..
21+
}
22+
23+
post_install() {
24+
for shell in bash fish zsh; do
25+
vcompletion "completion.$shell" "$shell"
26+
done
27+
}

0 commit comments

Comments
 (0)