# Contributor: Kevin Daudt # Maintainer: Kevin Daudt pkgname=chezmoi pkgver=1.8.0 pkgrel=1 pkgdesc="Manage your dotfiles across multiple machines, securely." url="https://www.chezmoi.io/" arch="all" license="MIT" makedepends="go" options="!check chmod-clean" # no test suite subpackages=" $pkgname-doc $pkgname-bash-completion:bashcomp:noarch $pkgname-zsh-completion:zshcomp:noarch $pkgname-fish-completion:fishcomp:noarch " source="$pkgname-$pkgver.tar.gz::https://github.com/twpayne/chezmoi/archive/v$pkgver.tar.gz" export GOPATH="$srcdir" build() { go build \ -ldflags " -X \"main.version=$pkgver\" \ -X \"main.date=$(date --utc +%Y-%M-%dT%H:%I:%SZ)\" \ -X \"github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/chezmoi/\" " \ -tags noupgrade \ -tags noembeddocs make completions } package() { install -Dm0755 chezmoi "$pkgdir"/usr/bin/chezmoi } doc() { default_doc mkdir -p "$subpkgdir/usr/share/doc/chezmoi" cp "$builddir/docs/"* "$subpkgdir/usr/share/doc/chezmoi" } bashcomp() { pkgdesc="additional scripts for bash like shell completion" depends="" install_if="$pkgname=$pkgver-r$pkgrel bash-completion" cd "$builddir" install -Dm0644 completions/chezmoi-completion.bash \ "$subpkgdir"/usr/share/bash-completion/completions/$pkgname } zshcomp() { pkgdesc="additional scripts for zsh like shell completion" depends="" install_if="$pkgname=$pkgver-r$pkgrel zsh" cd "$builddir" install -Dm0644 completions/chezmoi.zsh \ "$subpkgdir"/usr/share/zsh/site-functions/_$pkgname } fishcomp() { pkgdesc="additional scripts for fish like shell completion" depends="" install_if="$pkgname=$pkgver-r$pkgrel fish" cd "$builddir" install -Dm0644 completions/chezmoi.fish \ "$subpkgdir"/usr/share/fish/site-functions/_$pkgname } cleanup_srcdir() { go clean -modcache default_cleanup_srcdir } sha512sums="768b315746b0a4cfe90e172146392e5324fa25accfee53f4f092251f4840a2115dab47515dac595f52d6b7793fd65c3a9d7bef7ea2dc9f10906a89dacf1d9f29 chezmoi-1.8.0.tar.gz"