# $Id: PKGBUILD 201329 2013-12-09 00:20:22Z eric $ # Maintainer: kevin # Contributor: Manolis Tzanidakis pkgname=perl-net-dns pkgver=0.73 pkgrel=1 pkgdesc="Perl Module: Interface to the DNS resolver." arch=('i686' 'x86_64') license=('PerlArtistic') url="http://search.cpan.org/dist/Net-DNS/" depends=('perl-digest-hmac' 'perl-net-ip' 'perl') checkdepends=('perl-test-pod') options=('!emptydirs') source=(http://www.cpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-$pkgver.tar.gz) sha1sums=('03c02d04c4346e4a3f52e28885d870b6be96feda') build() { cd Net-DNS-${pkgver} perl Makefile.PL INSTALLDIRS=vendor make } check() { cd Net-DNS-${pkgver} make test } package() { cd Net-DNS-${pkgver} make DESTDIR="${pkgdir}" install }