aports/community/staticcheck/APKBUILD
2025-05-11 17:42:12 +02:00

57 lines
1.5 KiB
Text

# Contributor: Clayton Craft <clayton@craftyguy.net>
# Maintainer: Clayton Craft <clayton@craftyguy.net>
pkgname=staticcheck
pkgver=2025.1.1
pkgrel=3
pkgdesc="advanced Go linter"
url="https://github.com/dominikh/go-tools"
arch="all"
license="MIT"
makedepends="go"
options="net"
source="$pkgname-$pkgver.tar.gz::https://github.com/dominikh/go-tools/archive/refs/tags/$pkgver.tar.gz"
builddir="$srcdir/go-tools-$pkgver"
case "$CARCH" in
# tests run out of memory in CI on these platforms:
s390x|x86|armhf|armv7) options="!check" ;;
esac
# Without this, linking fails on ppc64le. If this persists after
# Go 1.18.1 is released then report this upstream.
#
# See https://github.com/golang/go/issues/51787
case "$CARCH" in
ppc64le) export GOFLAGS="$GOFLAGS -ldflags=-linkmode=external" ;;
esac
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
build() {
export CGO_CPPFLAGS="$CPPFLAGS"
export CGO_CFLAGS="$CFLAGS"
export CGO_CXXFLAGS="$CXXFLAGS"
export CGO_LDFLAGS="$LDFLAGS"
mkdir -p bin
go build -o ./bin ./...
}
check() {
GOROOT="/usr/lib/go" \
go test ./...
}
package() {
install -p -Dm755 -t "$pkgdir/usr/bin/" bin/*
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm644 "LICENSE-THIRD-PARTY" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-THIRD-PARTY"
}
sha512sums="
49ec128257070f7b479c97e33cd602767b5b8650ca3fd6461a0634dc26d2f6dc9165bd9938de69e3bc128d7bfed9f4aa2db642c36af52a5382c71041a9c799e9 staticcheck-2025.1.1.tar.gz
"