# Maintainer: Erich Eckner # Generator : neuesPerlPaket (c76f19eeb8ac0e674222223e3f2f0b1a4250e725fbc76c117ed5a925d0a78bc530c4457ecc3b31370951fc9b8729fc0272fa9206231f2dcd7aab2565a892a173) pkgname='perl-code-tidyall' pkgver=0.78 pkgrel=2 pkgdesc='Engine for tidyall, your all-in-one code tidier and validator' arch=('any') license=('PerlArtistic' 'GPL') options=('!emptydirs') optdepends=( 'perl-parallel-forkmanager') makedepends=( 'perl-autodie' 'perl-encode' 'perl-extutils-makemaker' 'perl-lib' 'perl-lib-relative' 'perl-pathtools' 'perl-test-class-most' 'perl-test-differences' 'perl-test-fatal' 'perl-test-simple>=0.96' 'perl-test-warnings') depends=( 'perl>=5.32' 'perl<5.33' 'perl-base' 'perl-capture-tiny' 'perl-config-ini' 'perl-constant' 'perl-data-dumper' 'perl-digest-sha' 'perl-exporter' 'perl-file-pushd' 'perl-file-which' 'perl-getopt-long' 'perl-ipc-run3' 'perl-ipc-system-simple' 'perl-list-compare' 'perl-list-someutils' 'perl-log-any' 'perl-module-runtime' 'perl-moo>=2.000000' 'perl-path-tiny>=0.098' 'perl-pathtools' 'perl-scalar-list-utils' 'perl-scope-guard' 'perl-specio' 'perl-specio>=0.40' 'perl-specio-library-path-tiny>=0.04' 'perl-test-simple' 'perl-text-diff>=1.44' 'perl-text-parsewords' 'perl-timedate' 'perl-time-duration-parse' 'perl-try-tiny') provides=( 'perl-code-tidyall-cache=0.78' 'perl-code-tidyall-cachemodel=0.78' 'perl-code-tidyall-cachemodel-shared=0.78' 'perl-code-tidyall-config-ini-reader=0.78' 'perl-code-tidyall-git-precommit=0.78' 'perl-code-tidyall-git-prereceive=0.78' 'perl-code-tidyall-git-util=0.78' 'perl-code-tidyall-plugin=0.78' 'perl-code-tidyall-plugin-cssunminifier=0.78' 'perl-code-tidyall-plugin-generictransformer=0.78' 'perl-code-tidyall-plugin-genericvalidator=0.78' 'perl-code-tidyall-plugin-jsbeautify=0.78' 'perl-code-tidyall-plugin-jshint=0.78' 'perl-code-tidyall-plugin-jslint=0.78' 'perl-code-tidyall-plugin-json=0.78' 'perl-code-tidyall-plugin-masontidy=0.78' 'perl-code-tidyall-plugin-perlcritic=0.78' 'perl-code-tidyall-plugin-perltidy=0.78' 'perl-code-tidyall-plugin-perltidysweet=0.78' 'perl-code-tidyall-plugin-phpcodesniffer=0.78' 'perl-code-tidyall-plugin-podchecker=0.78' 'perl-code-tidyall-plugin-podspell=0.78' 'perl-code-tidyall-plugin-podtidy=0.78' 'perl-code-tidyall-plugin-sortlines=0.78' 'perl-code-tidyall-result=0.78' 'perl-code-tidyall-role-genericexecutable=0.78' 'perl-code-tidyall-role-hasignore=0.78' 'perl-code-tidyall-role-runscommand=0.78' 'perl-code-tidyall-role-tempdir=0.78' 'perl-code-tidyall-svn-precommit=0.78' 'perl-code-tidyall-svn-util=0.78' 'perl-code-tidyall-util-zglob=0.78' 'perl-code-tidyall-zglob=0.78' 'perl-test-code-tidyall=0.78') checkdepends=( 'perl-eval-closure') url='https://metacpan.org/release/Code-TidyAll' _distdir="Code-TidyAll-${pkgver}" source=("https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/${_distdir}.tar.gz") sha512sums=('cf98ce582a2653293a8231ef3ecbeab43d58115e396ca94ca694fa35c7352353428a478227cdcc0a0534cca71a9601dd37ea4c8fbe0316bcaf07169a225e38ce') 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 }