void-packages/srcpkgs/cocogitto/template

35 lines
1.0 KiB
Bash

# Template file for 'cocogitto'
pkgname=cocogitto
version=6.1.0
revision=2
build_style=cargo
build_helper=qemu
hostmakedepends="pkg-config"
makedepends="libgit2-devel"
depends="gnupg"
short_desc="Conventional Commits toolbox"
maintainer="tranzystorekk <tranzystorek.io@protonmail.com>"
license="MIT"
homepage="https://github.com/cocogitto/cocogitto"
changelog="https://raw.githubusercontent.com/cocogitto/cocogitto/main/CHANGELOG.md"
distfiles="https://github.com/cocogitto/cocogitto/archive/refs/tags/${version}.tar.gz"
checksum=756bc574f311311639723297f3dc793f7494d9b3ae375d6bc3e6e714432d08f0
# Test suite is not atomic, relies on user environment such as git user configuration
make_check=no
post_install() {
local cog="${DESTDIR}/usr/bin/cog"
for shell in bash zsh fish; do
vtargetrun ${cog} generate-completions ${shell} > cog.${shell}
vcompletion cog.${shell} ${shell} cog
done
vtargetrun ${cog} generate-manpages "${XBPS_BUILDDIR}/${pkgname}-${version}/gen"
for manpage in gen/*.1; do
vman ${manpage}
done
vdoc README.md
vlicense LICENSE
}