summaryrefslogtreecommitdiff
path: root/community/arpack
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-03-08 10:04:45 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2013-03-08 10:04:45 +0100
commitc4e52ac02d1d223901ab48f78d9835fda60acd0c (patch)
tree0d9401c37c51deb92a3b16c0eeaeb45404334f1b /community/arpack
parent0e48701e4ef754a7d5aab1e8fa1ef6ba8ff3c441 (diff)
parent129db5c42a9c8f32d88c57ac3b81182acf844068 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/arpack/PKGBUILD community/ruby-cairo/PKGBUILD community/smem/PKGBUILD extra/pyqt/PKGBUILD extra/xerces-c/PKGBUILD
Diffstat (limited to 'community/arpack')
-rw-r--r--community/arpack/PKGBUILD19
1 files changed, 11 insertions, 8 deletions
diff --git a/community/arpack/PKGBUILD b/community/arpack/PKGBUILD
index 70bff7b10..48bef3af5 100644
--- a/community/arpack/PKGBUILD
+++ b/community/arpack/PKGBUILD
@@ -1,26 +1,29 @@
-# $Id: PKGBUILD 66078 2012-02-22 22:46:10Z arodseth $
+# $Id: PKGBUILD 85849 2013-03-07 18:31:38Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: William Rea <sillywilly@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=arpack
-pkgver=3.1.0
-pkgrel=2.1
+pkgver=3.1.2
+pkgrel=1
arch=('x86_64' 'i686' 'mips64el')
-pkgdesc="Fortran77 subroutines designed to solve large scale eigenvalue problems"
-url="http://forge.scilab.org/index.php/p/arpack-ng/"
+pkgdesc='Fortran77 subroutines designed to solve large scale eigenvalue problems'
+url='http://forge.scilab.org/index.php/p/arpack-ng/'
license=('BSD')
-depends=('glibc' 'gcc-fortran' 'lapack' 'openmpi>=1.5.4-4')
+depends=('lapack' 'openmpi')
provides=('arpack-ng')
options=('!libtool')
source=("http://forge.scilab.org/upload/$pkgname-ng/files/$pkgname-ng_$pkgver.tar.gz")
-sha256sums=('65b7856126f06ecbf9ec450d50df92ca9260d4b0d21baf02497554ac230d6feb')
+sha256sums=('9338bda5bef5a4bafd99c18f327acb54f8be4ffc5c53d0a186e4aa27db3260f2')
build() {
cd "$srcdir/$pkgname-ng_$pkgver"
./configure --prefix=/usr --enable-mpi
- make F77="gfortran" LIBS+=" `pkg-config --libs ompi` "
+ make \
+ F77="mpif77" \
+ CFLAGS+=" `pkg-config --cflags ompi` " \
+ LIBS+=" `pkg-config --libs ompi` "
}
package() {