void-packages/srcpkgs/hut/template

29 lines
726 B
Bash
Raw Normal View History

2022-07-31 04:44:15 +02:00
# Template file for 'hut'
pkgname=hut
2022-07-31 04:44:15 +02:00
version=0.2.0
revision=1
build_style=go
build_helper=qemu
go_import_path="git.sr.ht/~emersion/hut"
hostmakedepends="scdoc"
short_desc="CLI tool for sr.ht"
maintainer="Dakota Walsh <kota@nilsu.org>"
license="AGPL-3.0-only"
homepage="https://git.sr.ht/~emersion/hut"
changelog="https://git.sr.ht/~emersion/hut/log"
distfiles="https://git.sr.ht/~emersion/hut/archive/v${version}.tar.gz"
2022-07-31 04:44:15 +02:00
checksum=2a4e49458a2cb129055f1db3b835e111a89583f47d4d917110205113863492b9
post_install() {
hut=$(find $GOPATH/bin -name hut)
for sh in bash fish zsh; do
vtargetrun $hut completion $sh > hut.$sh
vcompletion hut.$sh $sh
done
vlicense LICENSE
scdoc < doc/hut.1.scd > doc/hut.1
vman doc/hut.1
}