# Maintainer: Antonio Rojas # ALARM: Kevin Mihelich # - delete shipped x86 binary src/mkjs to force rebuild for ARM pkgname=giac _pkgver=1.9.0-19 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) sha256sums=('6bb7899de4008c48e65c3b7a472b32ae018abb54b6db2aea174cf34af8e583fe' '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 }