void-packages/srcpkgs/hugo/template
2024-01-24 12:42:19 +01:00

30 lines
747 B
Bash

# Template file for 'hugo'
pkgname=hugo
version=0.121.2
revision=1
build_style=go
build_helper=qemu
go_import_path="github.com/gohugoio/hugo"
go_build_tags="extended"
short_desc="Fast & Modern Static Website Engine"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
license="Apache-2.0"
homepage="https://gohugo.io"
distfiles="https://github.com/gohugoio/hugo/archive/v${version}.tar.gz"
checksum=bbefa92a7ae9442f7acd082df3dca64f0d872264bb0ffb8bc582def4d5690a1b
post_install() {
vdoc README.md
hugo=$(find $GOPATH/bin -name hugo)
vtargetrun $hugo gen man
for page in $(ls man/); do
vman man/$page
done
for shell in bash fish zsh; do
vtargetrun $hugo completion $shell > ${pkgname}.$shell
vcompletion ${pkgname}.$shell $shell
done
}