# Maintainer: Erich Eckner # Generator : neuesPerlPaket (568f5d2df596725567f1a6081bf01d21ef231fbfd3571a4132eb004ebb50cfaada248486250b351491d5fd615f2c1d7f07d339c6e6ad8bb59146399a117bec0c) pkgname='perl-lib-relative' pkgver='0.002' pkgrel='3' pkgdesc='Add paths relative to the current file to @INC' arch=('any') license=('PerlArtistic' 'GPL') options=('!emptydirs') depends=( 'perl>=5.28' 'perl<5.29' 'perl-lib' 'perl-pathtools' ) makedepends=( 'perl-extutils-makemaker' 'perl-pathtools' 'perl-test-simple>=0.88' ) url='https://metacpan.org/release/lib-relative' _distdir="lib-relative-${pkgver}" source=("https://cpan.metacpan.org/authors/id/D/DB/DBOOK/${_distdir}.tar.gz") sha512sums=('ebe552fbc4967dd8615e2a1ecde69000358b3909095c66b557a6dd68c1a4744ca586dc91d2cf1b679a57ef981ec79a4689ba9c3f846393f4f48e528e85c326b0') 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 }