mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
# 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
|
|
_pkgver=1.9.0-45
|
|
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
|
|
format-security.patch)
|
|
sha256sums=('8dc8b7fef665cbfa8f7e63410b96baaaca96aacb69a7fb2be37731be77a0ba7b'
|
|
'04288944e408807a15aa502e1215087870d8921229c9f9890d862d3c9de337cd')
|
|
|
|
prepare() {
|
|
cd $pkgname-${pkgver%.*}
|
|
patch -p1 < ../format-security.patch # Fix -Werror=format-security errors
|
|
rm -f src/mkjs # force rebuild for ARM
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-${pkgver%.*}
|
|
CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS" # Fix crashes
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgbase-${pkgver%.*}
|
|
make DESTDIR="$pkgdir" install
|
|
}
|