# Maintainer: dracorp aka Piotr Rogoza pkgname=perl-test-portability-files pkgver=0.09 pkgrel=1 _author="A/AB/ABRAXXA" _perlmod="Test-Portability-Files" pkgdesc="Test-Portability-Files - Check file names portability" arch=('any') url="http://search.cpan.org/dist/Test-Portability-Files/" license=('GPL' 'PerlArtistic') depends=(perl) checkdepends=(perl-test-mojibake) options=(!emptydirs) source=("http://search.cpan.org/CPAN/authors/id/$_author/$_perlmod-$pkgver.tar.gz") sha256sums=('16d31fa941af1a79faec0192e09880cb19225cde649c03d2e3ceda9b455a621c') unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps MODULEBUILDRC=/dev/null build(){ cd "$srcdir"/$_perlmod-$pkgver if [ -f Makefile.PL ]; then /usr/bin/perl Makefile.PL make else /usr/bin/perl Build.PL ./Build fi } check(){ cd "$srcdir"/$_perlmod-$pkgver if [ -f Makefile.PL ]; then make test else ./Build test fi } package(){ cd "$srcdir"/$_perlmod-$pkgver if [ -f Makefile.PL ]; then make install INSTALLDIRS=vendor DESTDIR="$pkgdir" else ./Build install installdirs=vendor destdir="$pkgdir" fi }