# Maintainer: dracorp aka Piotr Rogoza pkgname=perl-module-cpanfile pkgver=1.1004 pkgrel=4 _author="M/MI/MIYAGAWA" _perlmod="Module-CPANfile" pkgdesc="Module-CPANfile - Parse cpanfile" arch=('any') url="https://metacpan.org/release/Module-CPANfile/" license=('GPL' 'PerlArtistic') checkdepends=( perl-file-pushd ) options=(!emptydirs) source=("http://search.cpan.org/CPAN/authors/id/$_author/$_perlmod-$pkgver.tar.gz") sha256sums=('88efbe2e9a642dceaa186430fedfcf999aaf0e06f6cced28a714b8e56b514921') unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps MODULEBUILDRC=/dev/null build(){ cd "$srcdir"/$_perlmod-$pkgver if [ -f Makefile.PL ]; then perl Makefile.PL make else perl Build.PL ./Build fi } check(){ cd "$srcdir"/$_perlmod-$pkgver if [ -f Makefile.PL ]; then make test else ./Build test fi } package(){ cd "$srcdir"/$_perlmod-$pkgver if [ -f Makefile.PL ]; then make install INSTALLDIRS=vendor DESTDIR="$pkgdir" else ./Build install --installdirs=vendor --destdir="$pkgdir" fi }