updated on Fri Jan 13 08:00:32 UTC 2012
[aur-mirror.git] / perl-test-requires / PKGBUILD
blob9b402600e26db0708114188e9f4d1deeca729e06
1 # Contributor: Justin Davis <jrcd83@gmail.com>
2 # Generator  : CPANPLUS::Dist::Arch 1.06
3 pkgname='perl-test-requires'
4 pkgver='0.06'
5 pkgrel='1'
6 pkgdesc="Checks to see if the module can be loaded"
7 arch=('any')
8 license=('PerlArtistic' 'GPL')
9 options=('!emptydirs')
10 depends=('perl')
11 url='http://search.cpan.org/dist/Test-Requires'
12 source=('http://search.cpan.org/CPAN/authors/id/T/TO/TOKUHIROM/Test-Requires-0.06.tar.gz')
13 md5sums=('6ce0da3cceadb6420d4c3c5bb69f64db')
15 build() {
16   PERL=/usr/bin/perl
17   DIST_DIR="${srcdir}/Test-Requires-0.06"
18   export PERL_MM_USE_DEFAULT=1 PERL5LIB=""                 \
19     PERL_AUTOINSTALL=--skipdeps                            \
20     PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'"     \
21     PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
22     MODULEBUILDRC=/dev/null
24   { cd "$DIST_DIR" &&
25     $PERL Makefile.PL &&
26     make &&
27     make test &&
28     make install;
29   } || return 1;
31   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete