mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-20 16:12:22 +01:00
50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer:
|
|
pkgname=github-cli
|
|
pkgver=1.6.0
|
|
pkgrel=1
|
|
pkgdesc="CLI for dealing with GitHub"
|
|
options="net chmod-clean" # Need to fetch modules and clean them up
|
|
url="https://cli.github.com"
|
|
arch="all !ppc64le" # FAIL: TestIssueView_tty_Preview (0.01s)
|
|
license="MIT"
|
|
depends="git"
|
|
makedepends="go"
|
|
subpackages="
|
|
$pkgname-doc
|
|
$pkgname-bash-completion
|
|
$pkgname-zsh-completion
|
|
$pkgname-fish-completion
|
|
"
|
|
source="https://github.com/cli/cli/archive/v$pkgver/github-cli-$pkgver-$pkgver.tar.gz
|
|
"
|
|
builddir="$srcdir/cli-$pkgver"
|
|
|
|
build() {
|
|
CGO_CPPFLAGS="$CPPFLAGS" \
|
|
CGO_CFLAGS="$CFLAGS" \
|
|
CGO_CXXFLAGS="$CXXFLAGS" \
|
|
CGO_LDFLAGS="$LDFLAGS" \
|
|
\
|
|
make GH_VERSION="v$pkgver" bin/gh manpages
|
|
bin/gh completion -s bash | install -Dm0644 /dev/stdin \
|
|
share/bash-completion/completions/gh
|
|
bin/gh completion -s zsh | install -Dm0644 /dev/stdin \
|
|
share/zsh/site-functions/_gh
|
|
bin/gh completion -s fish | install -Dm0644 /dev/stdin \
|
|
share/fish/completions/gh.fish
|
|
}
|
|
|
|
check() {
|
|
go test -v ./...
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 bin/gh "$pkgdir"/usr/bin/gh
|
|
|
|
mkdir -p "$pkgdir"/usr
|
|
cp -r share "$pkgdir"/usr
|
|
}
|
|
|
|
sha512sums="fb78e1809ad4d3f018fb6acc9703235af4da0b58509fc6ee257b52b490c6bfe3a02613ab62f16bff21420f006a3197bd3141391952489416460b7e3ac3995cd4 github-cli-1.6.0-1.6.0.tar.gz"
|