updated on Mon Jan 16 04:00:32 UTC 2012
[aur-mirror.git] / perl-test-eol / PKGBUILD
blob9ec4bec070a3bd90bf2262672d2facb0d2c0d5af
1 # CPAN Name  : Test-EOL
2 # Contributor: Caleb Cushing <xenoterracide@gmail.com>
3 # Generator  : CPANPLUS::Dist::Arch 1.04
4 # Template @ http://github.com/xenoterracide/AURpan/blob/master/perl-test-eol/PKGBUILD.tt
5 # File bugs @ http://github.com/xenoterracide/AURpan/issues
7 pkgname='perl-test-eol'
8 pkgver='0.9'
9 pkgrel='1'
10 pkgdesc="Check the correct line endings in your project"
11 arch=('any')
12 url='http://search.cpan.org/dist/Test-EOL'
13 license=('PerlArtistic' 'GPL')
14 depends=('perl')
17 options=('!emptydirs')
19 source=('http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Test-EOL-0.9.tar.gz')
20 md5sums=('b3b4453d0caed2954a93585924ab15f2')
22 build() {
23   DIST_DIR="${srcdir}/Test-EOL-0.9"
24   export PERL_MM_USE_DEFAULT=1 PERL5LIB=""                 \
25     PERL_AUTOINSTALL=--skipdeps                            \
26     PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'"     \
27     PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
28     MODULEBUILDRC=/dev/null
29   {
30         cd "$DIST_DIR" &&
31     perl Makefile.PL &&
32     make &&
33     make test &&
34     make DESTDIR="$pkgdir" install;
35   } || return 1;
37   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete