summaryrefslogtreecommitdiff
path: root/sys-auth/ssh-agent-mux/ssh-agent-mux-0.1.6.ebuild
diff options
context:
space:
mode:
authorLibravatar Terin Stock <terinjokes@gmail.com>2025-11-06 18:13:54 +0000
committerLibravatar Terin Stock <terinjokes@gmail.com>2025-11-06 18:13:54 +0000
commit9b81d21d9e4f17057ff815466b6bdfcb46ad132f (patch)
tree6c0194a5676baed0cd85a684136f3e8b09c48282 /sys-auth/ssh-agent-mux/ssh-agent-mux-0.1.6.ebuild
parentdev-go/gopls: treeclean (diff)
downloadebuilds-9b81d21d9e4f17057ff815466b6bdfcb46ad132f.tar.xz
sys-auth/ssh-agent-mux: new package, add 0.1.6HEADtrunk
Diffstat (limited to 'sys-auth/ssh-agent-mux/ssh-agent-mux-0.1.6.ebuild')
-rw-r--r--sys-auth/ssh-agent-mux/ssh-agent-mux-0.1.6.ebuild22
1 files changed, 22 insertions, 0 deletions
diff --git a/sys-auth/ssh-agent-mux/ssh-agent-mux-0.1.6.ebuild b/sys-auth/ssh-agent-mux/ssh-agent-mux-0.1.6.ebuild
new file mode 100644
index 0000000..86a19b8
--- /dev/null
+++ b/sys-auth/ssh-agent-mux/ssh-agent-mux-0.1.6.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CREATES=" "
+inherit cargo systemd
+
+DESCRIPTION="Combines multiple agents' keys into a single agent"
+HOMEPAGE="https://github.com/overhacked/ssh-agent-mux"
+SRC_URI="https://github.com/overhacked/ssh-agent-mux/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://share.terinstock.com/${P}-vendor.tar.xz"
+
+LICENSE="|| ( Apache-2.0 BSD )"
+SLOT="0"
+KEYWORDS="~amd64"
+
+src_unpack() {
+ cargo_src_unpack
+ mkdir "${S}"/vendor || die
+ ln -s "${WORKDIR}/vendor/"* "${CARGO_HOME}/gentoo/" || die
+}