# Maintainer: Erich Eckner # Generator : neuesPerlPaket (445682a1bd8a70c152ebe76ddf08deb3d21406c80f819873940cb0909a895cfcde52cc62469cd6f4e4d632f24b3df31e0eec78843cb778079f24dc33b18472ea) pkgname='perl-pod-wordlist-hanekomu' pkgver='1.132680' pkgrel=5 pkgdesc='Add words for spell checking POD (DEPRECATED)' arch=('any') license=('PerlArtistic' 'GPL') options=('!emptydirs') depends=( 'perl>=5.32' 'perl<5.33' 'perl-test-spelling' ) makedepends=( 'perl' 'perl-carp' 'perl-extutils-makemaker>=6.30' 'perl-io' 'perl-pathtools' 'perl-scalar-list-utils' 'perl-test-simple>=0.94' ) url='https://metacpan.org/release/Pod-Wordlist-hanekomu' _distdir="Pod-Wordlist-hanekomu-${pkgver}" source=("https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/${_distdir}.tar.gz") sha512sums=('ace1ef42a799608968754c780d218643493f47ade264c48e5d0a2800b31d75542ed1976afe13d8acb6a8c4b10d92b67d00638a0e0dd2647c91177eb43ae89124') 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 }