Package Details: ssh-tpm-agent-git 0.3.1.r1.5924ae1-1

Git Clone URL: https://aur.archlinux.org/ssh-tpm-agent-git.git (read-only, click to copy)
Package Base: ssh-tpm-agent-git
Description: ssh-agent compatible agent using TPM backed keys
Upstream URL: https://github.com/Foxboron/ssh-tpm-agent
Licenses: MIT
Submitter: fuero
Maintainer: fuero
Last Packager: fuero
Votes: 2
Popularity: 0.53
First Submitted: 2023-08-03 07:55 (UTC)
Last Updated: 2024-03-24 09:00 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

fuero commented on 2024-03-24 09:03 (UTC)

@seaboard_hiccoug done

seaboard_hiccoug commented on 2024-03-22 02:27 (UTC)

Could we have this patch added to install ssh-tpm-add and ssh-tpm-hostkeys

diff --git a/PKGBUILD b/PKGBUILD
index d713297..e80337a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@ _pkgname=ssh-tpm-agent
 _repo_name="${_pkgname}.git"
 pkgname="${_pkgname}-git"
 # renovate: pkgName=https://github.com/Foxboron/ssh-tpm-agent depName=ssh-tpm-agent-git
-pkgver=0.1.0.r12.6092d3f
+pkgver=0.3.1.r1.5924ae1
 pkgrel=1
 pkgdesc='ssh-agent compatible agent using TPM backed keys'
 arch=('x86_64')
@@ -43,8 +43,10 @@ _go_build() {

 build() {
   cd "${srcdir}/${_repo_name}"
-  _go_build "ssh-tpm-agent.bin" ./cmd/ssh-tpm-agent
-  _go_build "ssh-tpm-keygen.bin" ./cmd/ssh-tpm-keygen
+  _go_build "ssh-tpm-agent.bin"    ./cmd/ssh-tpm-agent
+  _go_build "ssh-tpm-keygen.bin"   ./cmd/ssh-tpm-keygen
+  _go_build "ssh-tpm-add.bin"      ./cmd/ssh-tpm-add
+  _go_build "ssh-tpm-hostkeys.bin" ./cmd/ssh-tpm-hostkeys
 }

 check() {
@@ -54,8 +56,10 @@ check() {

 package () {
   cd "${srcdir}/${_repo_name}"
-  install -Dm 755 ssh-tpm-agent.bin "${pkgdir}/usr/bin/ssh-tpm-agent"
-  install -Dm 755 ssh-tpm-keygen.bin "${pkgdir}/usr/bin/ssh-tpm-keygen"
+  install -Dm 755 ssh-tpm-agent.bin    "${pkgdir}/usr/bin/ssh-tpm-agent"
+  install -Dm 755 ssh-tpm-keygen.bin   "${pkgdir}/usr/bin/ssh-tpm-keygen"
+  install -Dm 755 ssh-tpm-add.bin      "${pkgdir}/usr/bin/ssh-tpm-add"
+  install -Dm 755 ssh-tpm-hostkeys.bin "${pkgdir}/usr/bin/ssh-tpm-hostkeys"
   install -Dm 644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"

   for _file in *.md