# Maintainer (Arch): Pedro Alejandro López-Valencia # Contributor: Márcio Silva _author=PJACKLAM _perlmod=Math-BigInt-GMP pkgname=perl-math-bigint-gmp pkgver=1.49 pkgrel=1 pkgdesc="Big integer calculations using the GNU Multiple Precision Arithmetic Library." arch=('i686' 'x86_64') url="http://search.cpan.org/~$_author/$_perlmod" license=('GPL1') depends=('perl>=5.16.2' 'gmp') options=(!emptydirs) source=(http://cpan.perl.org/modules/by-authors/id/P/PJ/$_author/$_perlmod-$pkgver.tar.gz) md5sums=('6b48b02615824933b6e2fe2ef1077950') build() { cd "$srcdir/$_perlmod-$pkgver" # Install module in vendor directories. PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make } #check() { # cd "$srcdir/$_perlmod-$pkgver" # make test #} package() { cd "$srcdir/$_perlmod-$pkgver" make install DESTDIR="$pkgdir" find ${pkgdir} -name '.packlist' -delete find ${pkgdir} -name '*.pod' -delete } # vim:set ts=2 sw=2 et ft=sh: