# Maintainer: Erich Eckner # Generator : neuesPerlPaket (d3b8f856efc23c99656b994aa72658ac963819754afaf13b4ff51112b3b57c06d21420dc7b9785686dc52d8001593e3bd56268af1bc970e123ce908790bf7852) pkgname='perl-string-js' pkgver='0.03' pkgrel=2 pkgdesc='Utilities for Javascript string literal representation' arch=('any') license=('PerlArtistic' 'GPL') options=('!emptydirs') makedepends=( 'perl' 'perl-extutils-makemaker' 'perl-io' 'perl-pathtools' 'perl-test-exception' 'perl-test-simple>=0.98' ) depends=( 'perl>=5.32' 'perl<5.33' 'perl-exporter' 'perl-json-maybexs' ) url='https://metacpan.org/release/String-JS' _distdir="String-JS-${pkgver}" source=("https://cpan.metacpan.org/authors/id/P/PE/PERLANCAR/${_distdir}.tar.gz") sha512sums=('a477ac22ab4dc6cce1e10005c802a1020f8f94ea976d88d29bda0005272fde214f013e7b2109e70eb01ee931c01038c4546264b6b93ae8a27b498b4e7b0e3151') 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 }