updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / sshfp / PKGBUILD
blob17080ebff5392ac9faf5ec033dae8255086c60aa
1 # Maintainer: Phillip Smith <fukawi2@NO-SPAM.gmail.com>
2 # http://github.com/fukawi2/aur-packages
4 ### I AM ONLY THE PACKAGER, NOT THE DEVELOPER
5 ### Please ask support questions about this software in one of:
6 ###   1) The AUR comments; OR
7 ###   2) Upstream forums/maillist etc; OR
8 ###   3) The ArchLinux forums
9 ### I do not always know enough about the software itself, or don't have the
10 ### time to promptly respond to direct emails.
11 ### If you have found a problem with the package/PKGBUILD (as opposed to
12 ### the software) then please do email me or post an AUR comment.
14 pkgname=sshfp
15 pkgver=1.2.1
16 pkgrel=1
17 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."
18 arch=('i686' 'x86_64')
19 license=('GPL')
20 depends=('python2' 'python-dnspython')
21 url="http://www.xelerance.com/software/sshfp/"
22 source=("ftp://ftp.xelerance.com/$pkgname/$pkgname-$pkgver.tar.gz")
23 md5sums=('333a43e0b5bdfd70d2a1fdae21d60c52')
25 package() {
26   cd $srcdir/$pkgname-$pkgver
27   make DESTDIR=$pkgdir install
29   sed -e 's|^#!/usr/bin/python$|#!/usr/bin/python2|g' \
30       -i $pkgdir/usr/bin/sshfp
33 # vim:set ts=2 sw=2 et: