community/cri-tools: enable on armhf

This commit is contained in:
Sertonix 2026-04-04 20:33:00 +00:00 committed by omni
parent 39c7273df2
commit 5ba022ecbc

View File

@ -5,7 +5,7 @@ pkgver=1.35.0
pkgrel=3
pkgdesc="CLI tool for Kubelet Container Runtime Interface (CRI)"
url="https://github.com/kubernetes-sigs/cri-tools"
arch="all !armhf"
arch="all"
license="Apache-2.0"
makedepends="go"
options="!check" # no check available
@ -17,7 +17,7 @@ export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
build() {
case "$CARCH" in
armv7|riscv64|s390x|x86|loongarch64) CGO_ENABLED=1 make all;;
arm*|riscv64|s390x|x86|loongarch64) CGO_ENABLED=1 make all;;
*) make all;;
esac
}