summaryrefslogtreecommitdiff
path: root/packages/base/hmatrix.cabal
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2014-05-21 10:30:55 +0200
committerAlberto Ruiz <aruiz@um.es>2014-05-21 10:30:55 +0200
commit197e88c3b56d28840217010a2871c6ea3a4dd1a4 (patch)
tree825be9d6c9d87d23f7e5497c0133d11d52c63535 /packages/base/hmatrix.cabal
parente07c3dee7235496b71a89233106d93f6cc94ada1 (diff)
update dependencies, move examples etc
Diffstat (limited to 'packages/base/hmatrix.cabal')
-rw-r--r--packages/base/hmatrix.cabal86
1 files changed, 86 insertions, 0 deletions
diff --git a/packages/base/hmatrix.cabal b/packages/base/hmatrix.cabal
new file mode 100644
index 0000000..5f3c48e
--- /dev/null
+++ b/packages/base/hmatrix.cabal
@@ -0,0 +1,86 @@
1Name: hmatrix
2Version: 0.16.0.2
3License: BSD3
4License-file: LICENSE
5Author: Alberto Ruiz
6Maintainer: Alberto Ruiz
7Stability: provisional
8Homepage: https://github.com/albertoruiz/hmatrix
9Synopsis: Numeric Linear Algebra
10Description: Dense linear algebra based on BLAS and LAPACK.
11Category: Math
12tested-with: GHC==7.8
13
14cabal-version: >=1.8
15
16build-type: Simple
17
18extra-source-files: THANKS.md INSTALL.md CHANGELOG
19
20extra-source-files: src/C/lapack-aux.h
21
22library
23
24 Build-Depends: base,
25 binary,
26 array,
27 deepseq,
28 random,
29 storable-complex,
30 vector >= 0.8
31
32 hs-source-dirs: src
33
34 exposed-modules: Data.Packed,
35 Data.Packed.Vector,
36 Data.Packed.Matrix,
37 Data.Packed.Foreign,
38 Data.Packed.ST,
39 Data.Packed.Development,
40
41 Numeric.LinearAlgebra.LAPACK
42 Numeric.LinearAlgebra.Algorithms
43 Numeric.Container
44 Numeric.LinearAlgebra.Util
45
46 Numeric.LinearAlgebra
47 Numeric.LinearAlgebra.Devel
48 Numeric.LinearAlgebra.Data
49
50 other-modules: Data.Packed.Internal,
51 Data.Packed.Internal.Common,
52 Data.Packed.Internal.Signatures,
53 Data.Packed.Internal.Vector,
54 Data.Packed.Internal.Matrix
55 Data.Packed.IO
56 Numeric.Chain
57 Numeric.Vectorized
58 Numeric.Vector
59 Numeric.Matrix
60 Data.Packed.Internal.Numeric
61 Numeric.LinearAlgebra.Util.Convolution
62 Numeric.LinearAlgebra.Random
63 Numeric.Conversion
64
65 C-sources: src/C/lapack-aux.c
66 src/C/vector-aux.c
67
68
69 extensions: ForeignFunctionInterface,
70 CPP
71
72 ghc-options: -Wall
73 -fno-warn-missing-signatures
74 -fno-warn-orphans
75
76 cc-options: -O4 -msse2 -Wall
77
78 cpp-options: -DBINARY
79
80 extra-libraries: blas lapack
81
82
83source-repository head
84 type: git
85 location: https://github.com/albertoruiz/hmatrix
86