mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
62 lines
1.8 KiB
Bash
62 lines
1.8 KiB
Bash
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
# Contributor: Gaetan Bisson <bisson@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - generalize cd Olinux-* for install-bin-sta
|
|
|
|
pkgname=pari
|
|
pkgver=2.15.5
|
|
pkgrel=1
|
|
pkgdesc='Computer algebra system designed for fast computations in number theory'
|
|
url='https://pari.math.u-bordeaux.fr/'
|
|
license=(GPL-2.0-or-later)
|
|
arch=(x86_64)
|
|
depends=(gcc-libs
|
|
glibc
|
|
gmp
|
|
libx11
|
|
readline
|
|
sh)
|
|
makedepends=(chrpath
|
|
perl
|
|
texlive-latex)
|
|
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')
|
|
checkdepends=(pari-elldata pari-galdata pari-seadata pari-galpol)
|
|
source=(https://pari.math.u-bordeaux.fr/pub/pari/unix/$pkgname-$pkgver.tar.gz{,.asc})
|
|
sha256sums=('0efdda7515d9d954f63324c34b34c560e60f73a81c3924a71260a2cc91d5f981'
|
|
'SKIP')
|
|
validpgpkeys=('42028EA404A2E9D80AC453148F0E7C2B4522E387')
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
sed -e 's|DLLDFLAGS = \$DLLDFLAGS|DLLDFLAGS = $DLLDFLAGS $LDFLAGS|' -i config/Makefile.SH # Honor system LDFLAGS
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./Configure \
|
|
--prefix=/usr \
|
|
--with-readline \
|
|
--mt=pthread \
|
|
--with-gmp
|
|
make all
|
|
make -C Olinux-* gp-sta
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make test-all
|
|
}
|
|
|
|
package() {
|
|
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-*
|
|
}
|