added dependencies to dnssec-tools
[mirrors/ArchLinux-Packages.git] / dnssec-tools / PKGBUILD
CommitLineData
59208b5e
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/
4
5pkgname=dnssec-tools
6pkgver=1.7
7pkgrel=1
8pkgdesc="set of software tools, patches, applications, wrappers, extensions, and plugins that will help ease the deployment of DNSSEC related technologies"
9url="http://www.dnssec-tools.org/"
10license="GPL"
11arch=('i686' 'x86_64')
e9b9390d 12depends=(perl perl-timedate perl-net-dns perl-net-dns-sec)
59208b5e
H
13source=("http://www.dnssec-tools.org/download/${pkgname}-${pkgver}.tar.gz")
14md5sums=('f3dfe18ae50cf65594936e1684d469d0')
15
16build() {
17 cd ${srcdir}/${pkgname}-${pkgver}/ || return 1
18 ./configure --prefix='' --exec_prefix=/usr\
19 --with-resolv-conf=/etc/resolv.conf\
20 --with-root-hints=none\
21 --with-ipv6\
22 --with-nsec3\
23 --with-dlv
24 make
25 make exec_prefix=/usr | return 1
26}
This page took 0.137678 seconds and 4 git commands to generate.