void-packages/srcpkgs/github-cli/template
2020-05-12 19:44:07 +02:00

27 lines
778 B
Bash

# Template file for 'github-cli'
pkgname=github-cli
version=0.8.0
revision=1
wrksrc="cli-${version}"
build_style=go
go_import_path="github.com/cli/cli/cmd/gh"
go_ldflags="-X github.com/cli/cli/command.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/v${version}.tar.gz"
checksum=6439f2b01681be33b2b3fa313abdb700e5f6344ddff5e0fe8e01226c20d36442
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/command.BuildDate=${_date}"
fi
}
post_install() {
vlicense LICENSE
}