Commit | Line | Data |
---|---|---|
41f49431 H |
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/ | |
019e1237 | 4 | # Patches welcome: http://github.com/harvie/archlinux-packages |
41f49431 H |
5 | |
6 | pkgname=openssh-dnssec | |
019e1237 | 7 | pkgver=0.2 |
41f49431 H |
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/" | |
019e1237 H |
13 | depends=('openssh' 'ldns' 'dnssec-root-zone-trust-anchors' 'bash') |
14 | #actually will work without dnssec-root-zone-trust-anchors but being less secure | |
41f49431 | 15 | source=('ssh-dnssec.sh') |
019e1237 | 16 | md5sums=('7ee88323823c448162ef79c514509f0d') |
41f49431 H |
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 | } |