diff options
Diffstat (limited to 'packages/base/hmatrix-base.cabal')
-rw-r--r-- | packages/base/hmatrix-base.cabal | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/packages/base/hmatrix-base.cabal b/packages/base/hmatrix-base.cabal new file mode 100644 index 0000000..148c8f3 --- /dev/null +++ b/packages/base/hmatrix-base.cabal | |||
@@ -0,0 +1,45 @@ | |||
1 | Name: hmatrix-base | ||
2 | Version: 0.16.0.0 | ||
3 | License: BSD3 | ||
4 | License-file: LICENSE | ||
5 | Author: Alberto Ruiz | ||
6 | Maintainer: Alberto Ruiz | ||
7 | Stability: provisional | ||
8 | Homepage: https://github.com/albertoruiz/hmatrix | ||
9 | Synopsis: Numeric Linear Algebra | ||
10 | Description: Numeric Linear Algebra | ||
11 | Category: Math | ||
12 | tested-with: GHC==7.8 | ||
13 | |||
14 | cabal-version: >=1.8 | ||
15 | |||
16 | build-type: Simple | ||
17 | |||
18 | extra-source-files: | ||
19 | |||
20 | library | ||
21 | |||
22 | Build-Depends: base >= 4 && < 5 | ||
23 | |||
24 | hs-source-dirs: src | ||
25 | |||
26 | exposed-modules: | ||
27 | |||
28 | other-modules: | ||
29 | |||
30 | extensions: ForeignFunctionInterface, | ||
31 | CPP | ||
32 | |||
33 | ghc-options: -Wall | ||
34 | |||
35 | cc-options: -O4 -msse2 -Wall | ||
36 | |||
37 | cpp-options: -DBINARY | ||
38 | |||
39 | extra-libraries: blas lapack | ||
40 | |||
41 | |||
42 | source-repository head | ||
43 | type: git | ||
44 | location: https://github.com/albertoruiz/hmatrix | ||
45 | |||