# Maintainer: Erich Eckner # Generator : neuesPerlPaket (531f4ea05761761b97731706ac717c0b6492abe73967627888b9913e5b55c57b4ee55f1d39b2cbcfadfaa2e5c1487c41151b50bcc321d3ac2202a96e10461201) pkgname='perl-perl-metrics-simple' pkgver=1.0.1 pkgrel=4 pkgdesc='Count packages, subs, lines, etc. of many files.' arch=('any') license=('PerlArtistic' 'GPL') options=('!emptydirs') provides=( 'perl-perl-metrics-simple-analysis=1.0.1' 'perl-perl-metrics-simple-analysis-file=1.0.1' 'perl-perl-metrics-simple-output=1.0.1' 'perl-perl-metrics-simple-output-html=1.0.1' 'perl-perl-metrics-simple-output-json=1.0.1' 'perl-perl-metrics-simple-output-plaintext=1.0.1') depends=( 'perl>=5.36' 'perl<5.37' 'perl-carp' 'perl-data-dumper' 'perl-getopt-long' 'perl-io>=1.14' 'perl-pod-usage' 'perl-ppi>=1.113' 'perl-readonly>=1.03' 'perl-statistics-basic') makedepends=( 'perl-module-build>=0.2612' 'perl-pathtools' 'perl-test-compile>=1.1.0' 'perl-test-pod>=1' 'perl-test-pod-coverage>=1.04') optdepends=( 'perl-readonly-xs') url='https://metacpan.org/release/Perl-Metrics-Simple' _distdir="Perl-Metrics-Simple-v${pkgver}" source=("https://cpan.metacpan.org/authors/id/M/MA/MATISSE/${_distdir}.tar.gz") sha512sums=('e448faf77081352480253a17a67cd95f3d7b8af1f9ea7233347e2294db0d779551823c75becbbfbba510490b0dd7d0c014c84f79aac49aec59ef684593fb1151') 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 }