# $Id: PKGBUILD 100723 2010-11-25 17:21:16Z kevin $ # Maintainer: Kevin Piche # Contributor: K. Piche pkgname=perl-bit-vector _cpanname=Bit-Vector pkgver=7.1 pkgrel=2 pkgdesc='Efficient bit vector, set of integers and "big int" math library' arch=(i686 x86_64) license=('GPL' 'LGPL' 'PerlArtistic') url="http://search.cpan.org/dist/${_cpanname}/" depends=('perl-carp-clan' 'perl>=5.10.0') options=(!emptydirs) source=(http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/${_cpanname}-${pkgver}.tar.gz) md5sums=('164c8574b728f6171b2a6f564fcd2e50') build() { cd ${srcdir}/${_cpanname}-$pkgver # install module in vendor directories. PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make make test } package() { cd ${srcdir}/${_cpanname}-$pkgver make install DESTDIR=${pkgdir} # remove perllocal.pod and .packlist find ${pkgdir} -name perllocal.pod -delete find ${pkgdir} -name .packlist -delete }