From: Harvie Date: Fri, 6 Aug 2010 01:57:01 +0000 (+0200) Subject: Added anchors2keys package X-Git-Url: https://git.harvie.cz/?p=mirrors%2FArchLinux-Packages.git;a=commitdiff_plain;h=3a62aeabfeed665a2bee0e69cbc028ed725b5176 Added anchors2keys package --- diff --git a/anchors2keys/PKGBUILD b/anchors2keys/PKGBUILD new file mode 100644 index 0000000..d9c61f1 --- /dev/null +++ b/anchors2keys/PKGBUILD @@ -0,0 +1,20 @@ +# Contributor: Thomas Mudrunka +# Maintainer: Thomas Mudrunka +# You can also contact me on http://blog.harvie.cz/ + +pkgname=anchors2keys +pkgver=0.1 +pkgrel=1 +pkgdesc="Takes a set of DS records, and fetches the DNSKEYs that match. Used for DNSSEC software that only accepts keys as trust anchors, rather than DS records." +url="https://itar.iana.org/instructions/" +license="BSD" +arch=(any) +depends=(python python-dnspython) +source=(https://itar.iana.org/_misc/${pkgname}) +md5sums=('b57c5683bbb863a3382303f4ef61a689') + +build() { + mkdir -p "${pkgdir}/usr/bin/" + cp "${srcdir}/${pkgname}" "${pkgdir}/usr/bin/" + chmod -R 755 "${pkgdir}" +}