Files
horizon-packages/srcpkgs/glab/template
T
2026-05-09 17:15:55 +02:00

36 lines
1.1 KiB
Bash

# Template file for 'glab'
pkgname=glab
version=1.95.0
revision=1
build_style=go
build_helper=qemu
go_ldflags="-X main.version=$version"
go_import_path=gitlab.com/gitlab-org/cli
go_package="${go_import_path}/cmd/glab"
short_desc="Command line tool bringing GitLab's features to your command line"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="MIT"
homepage="https://gitlab.com/gitlab-org/cli"
changelog="https://gitlab.com/gitlab-org/cli/-/releases"
distfiles="https://gitlab.com/gitlab-org/cli/-/archive/v$version/cli-v$version.tar.gz"
checksum=797b761b3d182203998d18ec21a15894abdf55ec8aad316fe3d3e82381a2e84a
make_check_pre="env PATH=/usr/libexec/chroot-git:${PATH}"
if [ $XBPS_MACHINE = "i686" ]; then
# https://gitlab.com/gitlab-org/cli/-/issues/8198
# https://gitlab.com/gitlab-org/cli/-/issues/8199
make_check_args+=" -skip=TestDetectPlatform|Test_helperRun/support_OAuth2"
fi
pre_check() {
/usr/libexec/chroot-git/git init -q
}
post_install() {
for shell in bash fish zsh; do
vtargetrun ${DESTDIR}/usr/bin/glab completion -s ${shell} > glab.${shell}
vcompletion glab.${shell} ${shell}
done
vlicense LICENSE
}