mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
New Upstream release of ssh-tools - command tput replaced with ANSI Escape Codes - command column is needed for ssh-certinfo
19 lines
704 B
Text
19 lines
704 B
Text
# Contributor: Sven Wick <sven.wick@gmx.de>
|
|
# Maintainer: Sven Wick <sven.wick@gmx.de>
|
|
|
|
pkgname="ssh-tools"
|
|
pkgver="1.6"
|
|
pkgrel=0
|
|
pkgdesc="collection of various tools using ssh"
|
|
arch="noarch"
|
|
url="https://github.com/vaporup/ssh-tools/"
|
|
license="GPL-3.0-or-later"
|
|
depends="bash colordiff cmd:ssh cmd:ssh-keygen cmd:ssh-keyscan cmd:column"
|
|
source="${pkgname}-${pkgver}.tar.gz::https://github.com/vaporup/${pkgname}/archive/v${pkgver}.tar.gz"
|
|
options="!check" # does not have a testsuite
|
|
|
|
package() {
|
|
install -Dt "${pkgdir}/usr/bin" ssh-*
|
|
}
|
|
|
|
sha512sums="034f4d534c4376f145beed6f6aefbd93de51ce2aa424691a78f39200014fcca5e685248476ceeb030d0492d4a8485a4fd126db80eefa7821e289a7b534b6e9ef ssh-tools-1.6.tar.gz"
|