# Maintainer: Erich Eckner # Generator : neuesPerlPaket (538017202d4cf1d88e3f2bf03b88f00ce1ec9fd20540f8cc4fda04669fe37b2f1d3521b2645446b7c8dcb253e57a934ea1d00f3217819e89699afa281d6f02e7) pkgname='perl-pod-coverage-trustpod' pkgver=0.100005 pkgrel=5 pkgdesc='allow a module'"'"'s pod to contain Pod::Coverage hints' arch=('any') license=('PerlArtistic' 'GPL') options=('!emptydirs') depends=( 'perl>=5.32' 'perl<5.33' 'perl' 'perl-base' 'perl-pod-coverage' 'perl-pod-eventual' 'perl-pod-parser') makedepends=( 'perl-extutils-makemaker' 'perl-lib' 'perl-pathtools' 'perl-test-simple>=0.96') url='https://metacpan.org/release/Pod-Coverage-TrustPod' _distdir="Pod-Coverage-TrustPod-${pkgver}" source=("https://cpan.metacpan.org/authors/id/R/RJ/RJBS/${_distdir}.tar.gz") sha512sums=('d96b75cbaff8ef4860372bca0a78a3ede20bc303760f1edf6fe5287234561e636ae4f54f670014c6dfc14d1a1c667dc2f8e79955bfca58b34235cef4a3437c21') build(){ cd "${srcdir}/${_distdir}" # Setting these env variables overwrites any command-line-options we don't want... export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps \ PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir}'" \ PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir}'" \ MODULEBUILDRC=/dev/null # If using Makefile.PL if [ -r Makefile.PL ]; then perl Makefile.PL make # If using Build.PL elif [ -r Build.PL ]; then perl Build.PL perl Build fi } check(){ cd "${srcdir}/${_distdir}" # If using Makefile.PL if [ -r Makefile.PL ]; then make test # If using Build.PL elif [ -r Build.PL ]; then perl Build test fi } package(){ cd "${srcdir}/${_distdir}" # If using Makefile.PL if [ -r Makefile.PL ]; then make install # If using Build.PL elif [ -r Build.PL ]; then perl Build install fi # remove perllocal.pod and .packlist find "${pkgdir}" -name .packlist -o -name perllocal.pod -delete }