# Maintainer: Erich Eckner # Generator : neuesPerlPaket (e1feeec1fef8ffa08f2187c3499d9064535d35bed5e6f05c4ea57fac8623450a307d700e0403d8d8f76f9ec6c003d314573d6cdb779aa9aae205c7f94571a7de) pkgname='perl-sub-strictdecl' pkgver='0.004' pkgrel='1' pkgdesc='detect undeclared subroutines in compilation' arch=('x86_64' 'i686') license=('PerlArtistic' 'GPL') options=('!emptydirs') provides=( 'perl-sub-strictdecl') depends=( 'perl>=5.006' 'perl-lexical-sealrequirehints>=0.008' 'perl-xsloader') makedepends=( 'perl>=5.006' 'perl-extutils-cbuilder>=0.15' 'perl-module-build' 'perl-test-simple') conflicts=( 'perl-0.19' 'perl-b-hooks-op-check<<') url='https://metacpan.org/release/Sub-StrictDecl' _distdir="Sub-StrictDecl-${pkgver}" source=("https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/${_distdir}.tar.gz") sha512sums=('73a50a478564d722a655bed76a89f540228d67aa24403c7286443aa88b499ee58e073d72a28ba2eb22438f94357ca4fe2c3484c6ad985e81fa572558dd5e324a') 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 }