arpack: include OpenBLAS path in pkgconfig file

This commit is contained in:
Thomas Tuegel 2015-12-22 14:21:34 -06:00
parent c55387be69
commit cd7cfcc9a2
3 changed files with 19 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, gfortran, openblas }:
{ stdenv, lib, copyPathsToStore, fetchurl, gfortran, openblas }:
with stdenv.lib;
@ -7,11 +7,17 @@ let
in
stdenv.mkDerivation {
name = "arpack-${version}";
src = fetchurl {
url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz";
sha256 = "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff";
};
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
postPatch = ''
substituteInPlace arpack.pc.in --replace "@openblas@" "${openblas}/lib"
'';
buildInputs = [ gfortran openblas ];
# Auto-detection fails because gfortran brings in BLAS by default

View File

@ -0,0 +1,11 @@
Index: arpack-ng-3.2.0/arpack.pc.in
===================================================================
--- arpack-ng-3.2.0.orig/arpack.pc.in
+++ arpack-ng-3.2.0/arpack.pc.in
@@ -5,5 +5,5 @@ libdir=@libdir@
Name: arpack
Description: ARPACK-NG
Version: @PACKAGE_VERSION@
-Libs: -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@
+Libs: -L@openblas@ -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@
Cflags:

View File

@ -0,0 +1 @@
openblas-libdir.patch