diff options
Diffstat (limited to 'hmatrix.cabal')
-rw-r--r-- | hmatrix.cabal | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal index 892b846..e684acc 100644 --- a/hmatrix.cabal +++ b/hmatrix.cabal | |||
@@ -1,5 +1,5 @@ | |||
1 | Name: hmatrix | 1 | Name: hmatrix |
2 | Version: 0.9.2.0 | 2 | Version: 0.9.3.0 |
3 | License: GPL | 3 | License: GPL |
4 | License-file: LICENSE | 4 | License-file: LICENSE |
5 | Author: Alberto Ruiz | 5 | Author: Alberto Ruiz |
@@ -10,6 +10,8 @@ Synopsis: Linear algebra and numerical computation | |||
10 | Description: Purely functional interface to basic linear algebra | 10 | Description: Purely functional interface to basic linear algebra |
11 | and other numerical computations, internally implemented using | 11 | and other numerical computations, internally implemented using |
12 | GSL, BLAS and LAPACK. | 12 | GSL, BLAS and LAPACK. |
13 | . | ||
14 | See also hmatrix-special and hmatrix-glpk. | ||
13 | Category: Math | 15 | Category: Math |
14 | tested-with: GHC ==6.10.4, GHC ==6.12.1 | 16 | tested-with: GHC ==6.10.4, GHC ==6.12.1 |
15 | 17 | ||
@@ -89,8 +91,6 @@ library | |||
89 | Numeric.GSL, | 91 | Numeric.GSL, |
90 | Numeric.LinearAlgebra, | 92 | Numeric.LinearAlgebra, |
91 | Numeric.LinearAlgebra.LAPACK, | 93 | Numeric.LinearAlgebra.LAPACK, |
92 | Numeric.LinearAlgebra.Linear, | ||
93 | Numeric.LinearAlgebra.Instances, | ||
94 | Numeric.LinearAlgebra.Interface, | 94 | Numeric.LinearAlgebra.Interface, |
95 | Numeric.LinearAlgebra.Algorithms, | 95 | Numeric.LinearAlgebra.Algorithms, |
96 | Graphics.Plot, | 96 | Graphics.Plot, |
@@ -103,6 +103,8 @@ library | |||
103 | Data.Packed.Internal.Signatures, | 103 | Data.Packed.Internal.Signatures, |
104 | Data.Packed.Internal.Vector, | 104 | Data.Packed.Internal.Vector, |
105 | Data.Packed.Internal.Matrix, | 105 | Data.Packed.Internal.Matrix, |
106 | Numeric.LinearAlgebra.Linear, | ||
107 | Numeric.LinearAlgebra.Instances, | ||
106 | Numeric.GSL.Internal | 108 | Numeric.GSL.Internal |
107 | 109 | ||
108 | C-sources: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c, | 110 | C-sources: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c, |
@@ -141,6 +143,9 @@ library | |||
141 | extra-libraries: gsl | 143 | extra-libraries: gsl |
142 | frameworks: Accelerate | 144 | frameworks: Accelerate |
143 | 145 | ||
146 | if os(windows) | ||
147 | extra-libraries: gsl-0 blas lapack | ||
148 | |||
144 | -- The extra-libraries required for GSL and LAPACK | 149 | -- The extra-libraries required for GSL and LAPACK |
145 | -- should now be automatically detected by configure(.hs) | 150 | -- should now be automatically detected by configure(.hs) |
146 | 151 | ||