void-packages/srcpkgs/github-cli/template

38 lines
1.1 KiB
Bash

# Template file for 'github-cli'
pkgname=github-cli
version=2.18.1
revision=1
wrksrc="cli-${version}"
build_style=go
build_helper=qemu
go_import_path="github.com/cli/cli/v2/cmd/gh"
go_ldflags="-X github.com/cli/cli/v2/internal/build.Version=v${version}"
short_desc="GitHub CLI tool"
maintainer="shizonic <realtiaz@gmail.com>"
license="MIT"
homepage="https://cli.github.com"
changelog="https://github.com/cli/cli/releases"
distfiles="https://github.com/cli/cli/archive/refs/tags/v${version}.tar.gz"
checksum=b66c15f03de1fa964fdd60641aec7f1d5c09b338ee10e9475c645bb0d8fa1e98
pre_build() {
local _date
if [ "$SOURCE_DATE_EPOCH" ]; then
_date="$(date --utc --date "@$SOURCE_DATE_EPOCH" "+%Y-%m-%d")"
go_ldflags="$go_ldflags -X github.com/cli/cli/v2/internal/build.Date=${_date}"
fi
}
post_install() {
vlicense LICENSE
CGO_ENABLED=0 GOARCH="" go run script/build.go manpages
vcopy share/man usr/share
GH="${DESTDIR}/usr/bin/gh"
for shell in bash fish zsh; do
vtargetrun ${GH} completion -s $shell > github-cli.$shell
vcompletion github-cli.$shell $shell gh
done
}