summaryrefslogtreecommitdiff
path: root/packages/base/hmatrix-base.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'packages/base/hmatrix-base.cabal')
-rw-r--r--packages/base/hmatrix-base.cabal45
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 @@
1Name: hmatrix-base
2Version: 0.16.0.0
3License: BSD3
4License-file: LICENSE
5Author: Alberto Ruiz
6Maintainer: Alberto Ruiz
7Stability: provisional
8Homepage: https://github.com/albertoruiz/hmatrix
9Synopsis: Numeric Linear Algebra
10Description: Numeric Linear Algebra
11Category: Math
12tested-with: GHC==7.8
13
14cabal-version: >=1.8
15
16build-type: Simple
17
18extra-source-files:
19
20library
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
42source-repository head
43 type: git
44 location: https://github.com/albertoruiz/hmatrix
45