# Maintainer: Erich Eckner # Generator : neuesPerlPaket (531f4ea05761761b97731706ac717c0b6492abe73967627888b9913e5b55c57b4ee55f1d39b2cbcfadfaa2e5c1487c41151b50bcc321d3ac2202a96e10461201) pkgname='perl-perl-critic-compatibility' pkgver='1.001' pkgrel=5 pkgdesc='Policies for Perl::Critic concerned with compatibility with various versions of Perl.' arch=('any') license=('PerlArtistic' 'GPL') options=('!emptydirs') provides=( 'perl-perl-critic-policy-compatibility-prohibitthreeargumentopen=1.001' ) depends=( 'perl>=5.32' 'perl<5.33' 'perl-perl-critic' 'perl-version' ) makedepends=( 'perl-test-simple' ) url='https://metacpan.org/release/Perl-Critic-Compatibility' _distdir="Perl-Critic-Compatibility-${pkgver}" source=("https://cpan.metacpan.org/authors/id/E/EL/ELLIOTJS/${_distdir}.tar.gz") sha512sums=('d43eda49cb9b2220b7d4254f382f1b9974a0956b71cdf810dd67f3fa8875ba8539ca1d46183d2008f1cb213a2e7a869dcb8dcb5f510993d5eae3371d970fdfa5') 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 }