29 lines
590 B
Bash
29 lines
590 B
Bash
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="8"
|
|
|
|
DESCRIPTION="Bash scripts to make ssh more convenient"
|
|
HOMEPAGE="
|
|
https://github.com/vaporup/ssh-tools
|
|
https://codeberg.org/vaporup/ssh-tools
|
|
"
|
|
SRC_URI="https://github.com/vaporup/ssh-tools/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
# Don't run tests as they check the scripts against
|
|
# a single hard-coded SSH server.
|
|
RESTRICT="test"
|
|
|
|
DOCS=( "CHANGELOG.md" )
|
|
|
|
RDEPEND="net-misc/openssh"
|
|
|
|
src_install(){
|
|
default
|
|
|
|
dobin ssh-*
|
|
}
|