PKGBUILDs/extra/pari/PKGBUILD

56 lines
1.6 KiB
Bash
Raw Normal View History

2020-11-03 00:13:21 +00:00
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# Contributor: Gaetan Bisson <bisson@archlinux.org>
2020-04-25 21:22:55 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2020-04-26 01:16:44 +00:00
# - generalize cd Olinux-* for install-bin-sta
2020-04-25 21:22:55 +00:00
pkgname=pari
2023-07-10 15:13:33 +00:00
pkgver=2.15.4
2021-06-24 18:03:15 +00:00
pkgrel=1
2020-04-25 21:22:55 +00:00
pkgdesc='Computer algebra system designed for fast computations in number theory'
url='https://pari.math.u-bordeaux.fr/'
2020-11-03 00:13:21 +00:00
license=(GPL)
arch=(x86_64)
depends=(gmp libx11)
2023-07-10 15:13:33 +00:00
makedepends=(perl texlive-latex chrpath)
2020-11-03 00:13:21 +00:00
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')
2021-06-24 18:03:15 +00:00
checkdepends=(pari-elldata pari-galdata pari-seadata pari-galpol)
source=(https://pari.math.u-bordeaux.fr/pub/pari/unix/$pkgname-$pkgver.tar.gz{,.asc})
2023-07-10 15:13:33 +00:00
sha256sums=('c3545bfee0c6dfb40b77fb4bbabaf999d82e60069b9f6d28bcb6cf004c8c5c0f'
2021-06-24 18:03:15 +00:00
'SKIP')
2020-11-03 00:13:21 +00:00
validpgpkeys=('42028EA404A2E9D80AC453148F0E7C2B4522E387')
2020-04-25 21:22:55 +00:00
2021-06-24 18:03:15 +00:00
prepare() {
2020-11-03 00:13:21 +00:00
cd $pkgname-$pkgver
sed -e 's|DLLDFLAGS = \$DLLDFLAGS|DLLDFLAGS = $DLLDFLAGS $LDFLAGS|' -i config/Makefile.SH # Honor system LDFLAGS
}
2020-04-25 21:22:55 +00:00
build() {
2020-11-03 00:13:21 +00:00
cd $pkgname-$pkgver
./Configure \
--prefix=/usr \
--with-readline \
--mt=pthread \
--with-gmp
make all
make -C Olinux-* gp-sta
2020-04-25 21:22:55 +00:00
}
check() {
2020-11-03 00:13:21 +00:00
cd $pkgname-$pkgver
2021-06-24 18:03:15 +00:00
make test-all
2020-04-25 21:22:55 +00:00
}
package() {
2020-11-03 00:13:21 +00:00
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-*
2020-04-25 21:22:55 +00:00
}