# Maintainer: Erich Eckner # Generator : neuesPerlPaket (900e236c34f5f70361b2c0eed5444de99193a45a6e5d0c97dc30ac9769d87f1aa77dfcc5a79ef0dea0df9d666b25059c0bc95a7ce51f80bc58ce97da48008bc9) pkgname='perl-universal-ref' pkgver='0.14' pkgrel=8 pkgdesc='Turns ref() into a multimethod' arch=('x86_64' 'i686' 'pentium4') license=('PerlArtistic' 'GPL') options=('!emptydirs') depends=( 'perl>=5.32' 'perl<5.33' 'perl-b-utils' 'perl-test-simple' 'perl-xsloader') makedepends=( 'perl-extutils-makemaker>=6.31') url='https://metacpan.org/release/UNIVERSAL-ref' checkdepends=( 'perl-pod-coverage-trustpod' 'perl-test-pod' 'perl-test-pod-coverage' 'perl-test-simple' ) _distdir="UNIVERSAL-ref-${pkgver}" source=("https://cpan.metacpan.org/authors/id/J/JJ/JJORE/${_distdir}.tar.gz") sha512sums=('bdefd8028f38fdd54444f12ad96359662a528895afdfbb0da6055a4d116c805eabdae4b6eb1fcf6d5018563467a9bf38aad003a5b78406ab8cdc9494b79770e2') prepare() { cd "${srcdir}/${_distdir}" sed -i 's|\([a-zA-Z]\+\)->op_sibling|OpSIBLING(\1)|' *.xs } 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 RELEASE_TESTING=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 }