# Maintainer: Erich Eckner # Generator : neuesPerlPaket (3051b3ea0463be8641255cdae84f793866cfb777ef495c087f7c899bc29502fd3d39a1198df402d1023ce1c2e0ce06ab788c25ff88083eb74179c8753575368b) pkgname='perl-test-compile' pkgver=2.4.1 pkgrel=1 pkgdesc='Check whether Perl files compile correctly.' arch=('any') license=('PerlArtistic' 'GPL') options=('!emptydirs') optdepends=( 'perl-devel-checkos') makedepends=( 'perl-module-build>=0.38') depends=( 'perl-exporter>=5.68' 'perl-parent>=0.225' 'perl-universal-require' 'perl-version') provides=( 'perl-test-compile-internal=2.4.1') checkdepends=( 'perl-perl-critic' 'perl-test-consistentversion' 'perl-test-hasversion' 'perl-test-perl-critic' 'perl-test-pod' 'perl-test-pod-coverage' 'perl-test-portability-files' 'perl-test-synopsis' 'perl-test-warnings' 'perl-universal-require' ) url='https://metacpan.org/release/Test-Compile' _distdir="Test-Compile-v${pkgver}" source=("https://cpan.metacpan.org/authors/id/E/EG/EGILES/${_distdir}.tar.gz") sha512sums=('e6878fa16544be75581144d125f547a799cc79210b925b86f07ad236395026bdc197c22af1820e893f5887e53933f0ba827377ae133752f63076cb436b624aee') 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}" export AUTHOR_TEST=1 # 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 }