mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-08 07:11:45 +02:00
46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
# Contributor: Thomas Kienlen <kommander@laposte.net>
|
|
# Maintainer: Thomas Kienlen <kommander@laposte.net>
|
|
pkgname=scaleway-cli
|
|
pkgver=2.21.0
|
|
pkgrel=1
|
|
pkgdesc="Command-line client for Scaleway Cloud"
|
|
url="https://www.scaleway.com/en/cli"
|
|
arch="all !x86 !armv7 !armhf" # tests are failing for x86, armv7, armhf
|
|
license="Apache-2.0"
|
|
makedepends="go"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/scaleway/scaleway-cli/archive/refs/tags/v$pkgver.tar.gz"
|
|
subpackages="
|
|
$pkgname-bash-completion
|
|
$pkgname-fish-completion
|
|
$pkgname-zsh-completion
|
|
"
|
|
options="chmod-clean"
|
|
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
build() {
|
|
go build -o scw ./cmd/scw/main.go
|
|
PATH=. scw autocomplete script shell=bash > bashcomp
|
|
PATH=. scw autocomplete script shell=fish > fishcomp
|
|
PATH=. scw autocomplete script shell=zsh > zshcomp
|
|
}
|
|
|
|
check() {
|
|
go test -v ./...
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 scw "$pkgdir"/usr/bin/scw
|
|
|
|
install -Dm644 bashcomp "$pkgdir"/usr/share/bash-completion/completions/scw
|
|
install -Dm644 fishcomp "$pkgdir"/usr/share/fish/vendor_completions.d/scw.fish
|
|
install -Dm644 zshcomp "$pkgdir"/usr/share/zsh/site-functions/_scw
|
|
|
|
}
|
|
|
|
sha512sums="
|
|
0629470f0be2dad04f4549a74b1f83e65c57cb664ac6b9aa2cc07c945999d7e9dac75daedcb938d691d98240d737a8e6f9f8384f2680fe75cc69b59e9475022b scaleway-cli-2.21.0.tar.gz
|
|
"
|