core/perl-net-dns/PKGBUILD
Jan Mette 93d9bd24fe
2010-03-14 15:48:48 +00:00

30 lines
925 B
Bash

# $Id: PKGBUILD 66859 2010-02-01 20:19:33Z giovanni $
# Maintainer: Kevin Piche <kevin@archlinux.org>
# Contributor: Manolis Tzanidakis
pkgname=perl-net-dns
_realname=Net-DNS
pkgver=0.66
pkgrel=1
pkgdesc="Perl Module: Interface to the DNS resolver."
arch=(i686 x86_64)
license=('PerlArtistic')
url="http://search.cpan.org/dist/${_realname}/"
depends=('perl-digest-hmac' 'perl-net-ip' 'perl>=5.10.0')
source=(http://www.cpan.org/authors/id/O/OL/OLAF/${_realname}-$pkgver.tar.gz)
options=(!emptydirs)
build() {
cd $srcdir/${_realname}-${pkgver}
# install module in vendor directories.
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
make || return 1
make install DESTDIR=${pkgdir} || return 1
# remove perllocal.pod and .packlist
find ${pkgdir} -name perllocal.pod -delete
find ${pkgdir} -name .packlist -delete
}
# vim: ts=2 sw=2 et ft=sh
md5sums=('1635d876324e3c2f6e277d5778bfe94c')