summaryrefslogtreecommitdiff
path: root/community/perl-list-moreutils/PKGBUILD
blob: fc399b9a7f89f43cfad4aa821b34d54974f45f42 (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
# Maintainer: François Charette <firmicus ατ gmx δοτ net>

pkgname=perl-list-moreutils
_cpanname=List-MoreUtils
pkgver=0.22
pkgrel=6
pkgdesc="Provide the stuff missing in List::Util"
arch=('i686' 'x86_64')
url="http://search.cpan.org/dist/List-MoreUtils"
license=('GPL' 'PerlArtistic')
depends=('perl')
options=('!emptydirs')
source=(http://www.cpan.org/authors/id/V/VP/VPARSEVAL/${_cpanname}-$pkgver.tar.gz) 
md5sums=('3a6ec506f40662ab1296c48c5eb72016')

build() {
  cd $srcdir/${_cpanname}-$pkgver
  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
  make
}

package() {
  cd $srcdir/${_cpanname}-$pkgver
  make install DESTDIR=$pkgdir
  find $pkgdir -name '.packlist' -delete
  find $pkgdir -name '*.pod' -delete
}