diff --git a/community/pari/PKGBUILD b/community/pari/PKGBUILD index 32dde1520..8b1ee6606 100644 --- a/community/pari/PKGBUILD +++ b/community/pari/PKGBUILD @@ -1,54 +1,61 @@ -# Maintainer: Gaetan Bisson +# Maintainer: Antonio Rojas +# Contributor: Gaetan Bisson # ALARM: Kevin Mihelich # - comment adding -flto to CFLAGS # - generalize cd Olinux-* for install-bin-sta pkgname=pari -pkgver=2.11.4 -pkgrel=3 +pkgver=2.13.0 +pkgrel=2 pkgdesc='Computer algebra system designed for fast computations in number theory' url='https://pari.math.u-bordeaux.fr/' -license=('GPL') -arch=('x86_64') -depends=('gmp' 'readline' 'libx11') -makedepends=('perl' 'texlive-core') -optdepends=('perl: gphelp, tex2mail') -validpgpkeys=('42028EA404A2E9D80AC453148F0E7C2B4522E387') -source=("https://pari.math.u-bordeaux.fr/pub/pari/unix/${pkgname}-${pkgver}.tar.gz"{,.asc}) -sha256sums=('bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c' +license=(GPL) +arch=(x86_64) +depends=(gmp libx11) +makedepends=(perl texlive-core chrpath) +optdepends=('perl: gphelp, tex2mail' + 'pari-elldata: J. Cremona elliptic curve database' + 'pari-galdata: to compute Galois groups in degrees 8 through 11' + 'pari-seadata: needed by ellap for large primes' + 'pari-galpol: GALPOL database of polynomials defining Galois extensions of the rationals') +source=("https://pari.math.u-bordeaux.fr/pub/pari/unix/$pkgname-$pkgver.tar.gz"{,.asc}) +sha256sums=('c811946de9d2c1ed0e97ff08e80d966f9a0b55848b7688406fab229e3948ba93' 'SKIP') +validpgpkeys=('42028EA404A2E9D80AC453148F0E7C2B4522E387') -conflicts=('pari-sage') -replaces=("pari-sage<=1:${pkgver}") +prepare() { + cd $pkgname-$pkgver + + sed -e 's|DLLDFLAGS = \$DLLDFLAGS|DLLDFLAGS = $DLLDFLAGS $LDFLAGS|' -i config/Makefile.SH # Honor system LDFLAGS +} build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd $pkgname-$pkgver - # Upstream Bill Allombert recommends linking gp statically against - # libpari.so with -flto to recover speed losses incurred when enabling - # pthread support. That's also what he now does for the Debian package. - #export CFLAGS+=' -flto' + # Upstream Bill Allombert recommends linking gp statically against + # libpari.so with -flto to recover speed losses incurred when enabling + # pthread support. That's also what he now does for the Debian package. + #export CFLAGS+=' -flto' - ./Configure \ - --prefix=/usr \ - --with-readline \ - --mt=pthread \ - --with-gmp \ - - make all + ./Configure \ + --prefix=/usr \ + --with-readline \ + --mt=pthread \ + --with-gmp + make all + make -C Olinux-* gp-sta } check() { - cd "${srcdir}/${pkgname}-${pkgver}" - make bench + cd $pkgname-$pkgver + make bench } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - ln -sf gp.1.gz "${pkgdir}"/usr/share/man/man1/pari.1 - - cd Olinux-* - make DESTDIR="${pkgdir}" install-bin-sta + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" -C Olinux-* install-bin-sta + ln -sf gp.1.gz "$pkgdir"/usr/share/man/man1/pari.1 + chrpath -d "$pkgdir"/usr/bin/gp-* }