# Maintainer: Erich Eckner # Contributor: Piotr Rogoża pkgname=perl-file-find-object pkgver=0.2.13 pkgrel='2' _author="S/SH/SHLOMIF" _distdir="File-Find-Object-v${pkgver}" pkgdesc="File::Find::Object - An object oriented File::Find replacement" arch=('any') url="http://search.cpan.org/dist/File-Find-Object/" license=('GPL' 'PerlArtistic') provides=( 'perl-file-find-object-base=0.2.13' 'perl-file-find-object-deeppath=0.2.13' 'perl-file-find-object-pathcomp=0.2.13' 'perl-file-find-object-result=0.2.13' 'perl-file-find-object-toppath=0.2.13') depends=( 'perl>=5.8.0' 'perl-carp' 'perl-class-xsaccessor' 'perl-parent' 'perl-pathtools' 'perl-scalar-list-utils') makedepends=( 'perl-file-path' 'perl-module-build>=0.36' 'perl-test-simple') checkdepends=('perl-cpan-changes' 'perl-test-pod' 'perl-test-pod-coverage' 'perl-test-trailingspace') options=(!emptydirs) source=("http://search.cpan.org/CPAN/authors/id/$_author/${_distdir}.tar.gz") sha512sums=('4d3dd12d0e80ac0873182667efabeafd411204332374f81a339bf1b7dd82258567745aaddf026207da449cc99248679d8ff4e80951a2096327afdc9a760b6cfd') 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 /usr/bin/perl Makefile.PL make # If using Build.PL elif [ -r Build.PL ]; then /usr/bin/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 }