Skip to content

Commit 972e58c

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

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

srcpkgs/kustomize/template

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
}

0 commit comments

Comments
 (0)