| 1 | # Contributor: Thomas Mudrunka <harvie@@email..cz> |
| 2 | # Maintainer: Thomas Mudrunka <harvie@@email..cz> |
| 3 | # You can also contact me on http://blog.harvie.cz/ |
| 4 | # Patches welcome: http://github.com/harvie/archlinux-packages |
| 5 | |
| 6 | pkgname=openssh-dnssec |
| 7 | pkgver=0.2 |
| 8 | pkgrel=1 |
| 9 | pkgdesc="DNSSEC wrapper for OpenSSH client which will simply prevent you from connecting to hosts with fraudent DNS records" |
| 10 | arch=('any') |
| 11 | license=('GPL') |
| 12 | url="http://github.com/Harvie/Programs/tree/master/bash/ssh-dnssec/" |
| 13 | depends=('openssh' 'ldns' 'dnssec-root-zone-trust-anchors' 'bash') |
| 14 | #actually will work without dnssec-root-zone-trust-anchors but being less secure |
| 15 | source=('ssh-dnssec.sh') |
| 16 | md5sums=('7ee88323823c448162ef79c514509f0d') |
| 17 | |
| 18 | build() { |
| 19 | mkdir -p ${pkgdir}/usr/bin |
| 20 | cp -f ${srcdir}/ssh-dnssec.sh ${pkgdir}/usr/bin/ssh-dnssec |
| 21 | chmod -R 755 ${pkgdir}/ |
| 22 | } |