blob: 8a8623b529c75b2b67ff0ad221b8e18681c84e79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname='perl-test-trailingspace'
pkgver=0.0300
pkgrel='2'
pkgdesc="test for trailing space in source files."
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
depends=(
'perl>=5.8.0'
'perl-autodie'
'perl-file-find-object-rule>=0.0301'
'perl-test-simple')
makedepends=(
'perl-extutils-makemaker'
'perl-file-path'
'perl-lib'
'perl-module-build>=0.28'
'perl-pathtools')
url='http://search.cpan.org/~shlomif/Test-TrailingSpace-0.0205/'
_distdir="Test-TrailingSpace-${pkgver}"
source=("http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/${_distdir}.tar.gz")
sha512sums=('0af0c53bce6d9ff73058f1c6929fafa757de6efe8ae63dce8f0d2cec08c312004c2668d477b5497ec1c228e255ff98dfa122f52ec93a207b597f9971f930ec50')
build() {
( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
PERL_AUTOINSTALL=--skipdeps \
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
MODULEBUILDRC=/dev/null
cd "$srcdir/$_distdir"
/usr/bin/perl Makefile.PL
make
)
}
check() {
cd "$srcdir/$_distdir"
( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
make test
)
}
package() {
cd "$srcdir/$_distdir"
make install
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
# Local Variables:
# mode: shell-script
# sh-basic-offset: 2
# End:
# vim:set ts=2 sw=2 et:
|