void-packages/srcpkgs/chezmoi/template

36 lines
1.0 KiB
Bash

# Template file for 'chezmoi'
pkgname=chezmoi
version=2.41.0
revision=1
build_style=go
go_import_path="github.com/twpayne/chezmoi/v2"
go_build_tags="noembeddocs noupgrade"
go_ldflags="-X main.version=${version} -X main.commit=v${version} -X main.builtBy=xbps"
checkdepends="tar git"
short_desc="Manage your dotfiles across multiple machines, securely"
maintainer="classabbyamp <void@placeviolette.net>"
license="MIT"
homepage="https://chezmoi.io/"
changelog="https://github.com/twpayne/chezmoi/releases"
distfiles="https://github.com/twpayne/chezmoi/archive/v${version}.tar.gz"
checksum=6af914491851e8da6a704c3072455fa82beeae337ed91c32802917ca3bb2fb33
pre_build() {
local _date
if [ "$SOURCE_DATE_EPOCH" ]; then
_date="$(date --utc --date "@$SOURCE_DATE_EPOCH" "+%Y-%m-%d")"
go_ldflags+=" -X main.date=${_date}"
fi
}
do_check() {
make test
}
post_install() {
vlicense LICENSE
vcompletion completions/chezmoi-completion.bash bash
vcompletion completions/chezmoi.fish fish
vcompletion completions/chezmoi.zsh zsh
}