Package Details: talhelper-bin 2.3.11-1

Git Clone URL: https://aur.archlinux.org/talhelper-bin.git (read-only, click to copy)
Package Base: talhelper-bin
Description: A tool to help creating Talos cluster in GitOps way.
Upstream URL: https://github.com/budimanjojo/talhelper
Keywords: kubernetes talos talosctl
Licenses: BSD-3-Clause
Conflicts: talhelper
Provides: talhelper
Submitter: budimanjojo
Maintainer: budimanjojo
Last Packager: budimanjojo
Votes: 0
Popularity: 0.000000
First Submitted: 2022-06-16 14:53 (UTC)
Last Updated: 2024-04-17 08:56 (UTC)

Latest Comments

budimanjojo commented on 2023-08-28 04:11 (UTC) (edited on 2023-08-28 04:12 (UTC) by budimanjojo)

@Sacro Thanks! The next release will also install completions for AUR users: https://github.com/budimanjojo/talhelper/commit/1ed34076dfeb3eef1a05e6932998a420657

Sacro commented on 2023-08-27 22:34 (UTC)

build() {
  ./talhelper completion bash > talhelper.bash
  ./talhelper completion fish > talhelper.fish
  ./talhelper completion zsh > _talhelper
}

package() {
  # bin
  install -Dm755 "./talhelper" "${pkgdir}/usr/bin/talhelper"
  # license
  install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/talhelper/LICENSE"
  # completions
  install -Dm644 talhelper.bash "${pkgdir}/usr/share/bash-completion/completions/talhelper"
  install -Dm644 talhelper.fish "${pkgdir}/usr/share/fish/completions/talhelper.fish"
  install -Dm644 _talhelper "${pkgdir}/usr/share/zsh/site-functions/_talhelper"
}

This will generate completions and throw them into the package for users!