summaryrefslogtreecommitdiff
path: root/pcr/perl-math-bigint-gmp
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-01-23 14:44:47 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-01-23 14:44:47 +0100
commit34a0799025517f28c5fe8ca04713a316a4c3ab7f (patch)
tree5fd8ab3890782b3942c062a64a4866aebc48a7c2 /pcr/perl-math-bigint-gmp
parent417e30597622622f8cec3beac34745a290412615 (diff)
pcr/perl-math-bigint-gmp: updated to 1.6004
Diffstat (limited to 'pcr/perl-math-bigint-gmp')
-rw-r--r--pcr/perl-math-bigint-gmp/PKGBUILD71
1 files changed, 43 insertions, 28 deletions
diff --git a/pcr/perl-math-bigint-gmp/PKGBUILD b/pcr/perl-math-bigint-gmp/PKGBUILD
index 21aaded66..8ddf64995 100644
--- a/pcr/perl-math-bigint-gmp/PKGBUILD
+++ b/pcr/perl-math-bigint-gmp/PKGBUILD
@@ -1,38 +1,53 @@
-# Maintainer (Arch): Pedro Alejandro López-Valencia <palopezv@gmail.com>
+# Contributor (AUR): Trizen <echo dHJpemVueEBnbWFpbC5jb20K | base64 -d>
+# Generator (AUR): CPANPLUS::Dist::Arch 1.32
# Contributor: Márcio Silva <coadde@hyperbola.info>
-_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')
+# parabola changes and rationale:
+# no changes.
+
+pkgname='perl-math-bigint-gmp'
+pkgver='1.6004'
+pkgrel='1'
+pkgdesc="Math::BigInt::GMP - backend library for Math::BigInt etc. based on GMP"
+arch=('i686' 'x86_64' 'armv7h')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('gmp>=6.1.2' 'perl>=5.6.1' 'perl-math-bigint>=1.999808')
+makedepends=()
+url='https://metacpan.org/release/Math-BigInt-GMP'
+source=("https://cpan.metacpan.org/authors/id/P/PJ/PJACKLAM/Math-BigInt-GMP-$pkgver.tar.gz")
+md5sums=('08a859a57c7512b1c92e57d717893154')
+sha512sums=('54b416fe577512691a97b9a06f8ca2ffc4ab63e0d11325f5926c42a4248b87325c2b5db0c57b2239819e863891ea40ab028b0f061ed9c8bbbf6886c467cb8d1e')
+_distdir="Math-BigInt-GMP-$pkgver"
build() {
- cd "$srcdir/$_perlmod-$pkgver"
- # Install module in vendor directories.
- PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
- make
+ ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+ PERL_AUTOINSTALL=--skipdeps \
+ PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+ PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+ MODULEBUILDRC=/dev/null
+
+ cd "$srcdir/$_distdir"
+ /usr/bin/perl Makefile.PL
+ make
+ )
}
-#check() {
-# cd "$srcdir/$_perlmod-$pkgver"
-# make test
-#}
+check() {
+ cd "$srcdir/$_distdir"
+ ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+ make test
+ )
+}
package() {
- cd "$srcdir/$_perlmod-$pkgver"
- make install DESTDIR="$pkgdir"
-
- find ${pkgdir} -name '.packlist' -delete
- find ${pkgdir} -name '*.pod' -delete
+ cd "$srcdir/$_distdir"
+ make install
+ find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
-# vim:set ts=2 sw=2 et ft=sh:
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et: