27 lines
779 B
Bash
27 lines
779 B
Bash
# Template file for 'github-cli'
|
|
pkgname=github-cli
|
|
version=0.10.1
|
|
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=5265f9594cca6c4c2f0d573c810f4ddb16e3baed0c18b18a353529506fc41297
|
|
|
|
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
|
|
}
|