PKGBUILDs/community/giac/PKGBUILD

47 lines
1.3 KiB
Bash
Raw Normal View History

2022-05-28 19:41:14 +00:00
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinxuarm.org>
# - delete shipped x86 binary src/mkjs to force rebuild for ARM
pkgname=giac
2022-09-05 21:11:15 +00:00
_pkgver=1.9.0-21
2022-05-28 19:41:14 +00:00
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc='A free computer algebra system'
arch=(x86_64)
url='http://www-fourier.ujf-grenoble.fr/~parisse/giac.html'
license=(GPL3)
depends=(fltk mpfi gsl pari ntl lapack curl glpk libao gmp-ecm libsamplerate)
makedepends=(python libjpeg texlive-core texlive-science hevea nauty)
optdepends=('perl: for pgiac')
replaces=(libgiac xcas)
provides=(libgiac xcas)
source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
giac-test-pari-2.11.patch)
2022-09-05 21:11:15 +00:00
sha256sums=('120cd16f2e033817302d2a03a22bd413dc1d85df8b225ba4f76b93a7805b07fe'
2022-05-28 19:41:14 +00:00
'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
prepare() {
cd $pkgname-${pkgver%.*}
patch -p1 < ../giac-test-pari-2.11.patch # Fix tests with pari 2.11
rm -f src/mkjs # force rebuild for ARM
}
build() {
cd $pkgname-${pkgver%.*}
CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS" # Fix crashes
./configure --prefix=/usr
make
}
check() {
cd $pkgname-${pkgver%.*}
make check
}
package() {
cd $pkgbase-${pkgver%.*}
make DESTDIR="$pkgdir" install
}