-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathtemplate
More file actions
37 lines (33 loc) · 1.09 KB
/
template
File metadata and controls
37 lines (33 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Template file for 'github-cli'
pkgname=github-cli
version=2.89.0
revision=1
build_style=go
build_helper=qemu
go_import_path="github.com/cli/cli/v2"
go_package="${go_import_path}/cmd/gh"
go_ldflags="-X github.com/cli/cli/v2/internal/build.Version=v${version}"
checkdepends="git openssh"
short_desc="GitHub CLI tool"
maintainer="tranzystorekk <tranzystorek.io@protonmail.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=bc9c11f75e4aeb7e1f0bd5f543a3edabb8958655025f8cdc3d9bbe14435a7441
pre_build() {
local _date
if [ "$SOURCE_DATE_EPOCH" ]; then
_date="$(date --utc --date "@$SOURCE_DATE_EPOCH" "+%Y-%m-%d")"
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
for shell in bash fish zsh; do
vtargetrun "${DESTDIR}/usr/bin/gh" completion -s ${shell} > github-cli.${shell}
vcompletion github-cli.${shell} ${shell} gh
done
}