summaryrefslogtreecommitdiffstats
path: root/abs/core/perl_modules/perl-list-allutils/PKGBUILD
blob: 2a14d9dd0e1d895aa09244aeded21493612ef10b (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
# CPAN Name  : List::AllUtils
# Contributor: Anton Leontiev <bunder /at/ t-25.ru>
# Generator  : CPANPLUS::Dist::Arch 1.29

pkgname=perl-list-allutils
pkgver=0.14
pkgrel=4
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' 'perl-scalar-list-utils>=1.45'
	 'perl-list-someutils' 'perl-list-utilsby')
checkdepends=('perl-test-warnings')
source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/List-AllUtils-$pkgver.tar.gz)
options=(!emptydirs)
sha256sums=('e45aa65927ae1975a000cc2fed14274627fa5e2bd09bab826a5f2c41d17ef6cd')

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
}