blob: ad337dd7458f9c409e7eff4728c50b6c36e2233e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Contributor: Phillip Smith <pkgbuild@phs.id.au>
# http://github.com/fukawi2/aur-packages
pkgname=sshfp
pkgver=1.2.2
pkgrel=2
pkgdesc="Generates DNS SSHFP-type records from SSH public keys from public keys from a known_hosts file or from scanning the host's sshd daemon."
arch=('any')
license=('GPL')
depends=('python' 'python-dnspython')
url="https://github.com/xelerance/sshfp"
source=("$pkgname-$pkgver.tar.gz::https://github.com/xelerance/$pkgname/archive/${pkgver}.tar.gz")
md5sums=('3cedcc3463e72196ee2028543d03ebfc')
package() {
cd "$srcdir"/$pkgname-$pkgver/
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|