blob: d3cc98f437046d806dce07d0c06b2eef76565a76 (
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
|
# CPAN Name : List::AllUtils
# Contributor (Arch): Anton Leontiev <bunder /at/ t-25.ru>
# Generator (Arch): CPANPLUS::Dist::Arch 1.29
pkgname=perl-list-allutils
pkgver=0.09
pkgrel=1
pkgdesc='Perl package that combines List::Util and List::MoreUtils in one bite-sized package'
arch=('any')
url='http://search.cpan.org/dist/List-AllUtils'
license=('Artistic2.0')
depends=('perl>=5.19.3' 'perl-list-moreutils>=0.28')
checkdepends=('perl-test-warnings')
source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/List-AllUtils-$pkgver.tar.gz)
options=(!emptydirs)
md5sums=('3e2dfeeef80c4e1952443c6b7d48583c')
build() {
cd List-AllUtils-$pkgver
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
/usr/bin/perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd List-AllUtils-$pkgver
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
export PERL_MM_USE_DEFAULT=1
make test
}
package() {
cd List-AllUtils-$pkgver
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
make install DESTDIR="$pkgdir"
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
|