# Maintainer: Erich Eckner # Generator : neuesPerlPaket (6d6eb887751f0274ce913321f40e306c692f5baa957799c6668772e8771f1b10c566613dde872a04de2cb279fd80591fac591849b34aeed27f7fa5f9120faf43) pkgname='perl-regexp-grammars' pkgver=1.053 pkgrel=1 pkgdesc='Add grammatical parsing features to Perl 5.10 regexes' arch=('any') license=('PerlArtistic' 'GPL') options=('!emptydirs') makedepends=( 'perl-extutils-makemaker' ) depends=( 'perl-test-simple' 'perl-version' ) url='https://metacpan.org/release/Regexp-Grammars' _distdir="Regexp-Grammars-${pkgver}" source=("https://cpan.metacpan.org/authors/id/D/DC/DCONWAY/${_distdir}.tar.gz") sha512sums=('4f1bd090937627e4d8786061f7d308bcdb0fdefa79db45aa6d4fd03465dd7b26f724bc5d8aa11d74941a610e41036054a2fbba72ef7c8aa5cd5570180dbdfa59') 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 }