~ubuntu-branches/ubuntu/vivid/haskell-hmatrix/vivid

« back to all changes in this revision

Viewing changes to hmatrix.cabal

  • Committer: Package Import Robot
  • Author(s): Denis Laxalde
  • Date: 2013-07-06 15:37:50 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130706153750-wxxplc788jedqvv5
Tags: 0.15.0.0-1
* New upstream release.
* Make it clear in copyright that the license is GPL-3 (as stated by the
  author in <https://github.com/albertoruiz/hmatrix/issues/45>) although
  there is no proper license file yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Name:               hmatrix
2
 
Version:            0.14.1.0
 
2
Version:            0.15.0.0
3
3
License:            GPL
4
4
License-file:       LICENSE
5
5
Author:             Alberto Ruiz
21
21
                    .
22
22
                    - "Numeric.LinearAlgebra": everything + instances of standard Haskell numeric classes
23
23
Category:           Math
24
 
tested-with:        GHC ==7.4
 
24
tested-with:        GHC ==7.6
25
25
 
26
26
cabal-version:      >=1.8
27
27
 
55
55
                    examples/multiply.hs
56
56
 
57
57
extra-source-files: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h,
58
 
                    lib/Numeric/LinearAlgebra/LAPACK/clapack.h
59
58
                    lib/Numeric/GSL/gsl-ode.c
60
59
 
61
60
flag dd
89
88
                        storable-complex,
90
89
                        process, random,
91
90
                        vector >= 0.8,
92
 
                        binary
 
91
                        binary,
 
92
                        deepseq
93
93
 
94
94
    Extensions:         ForeignFunctionInterface,
95
95
                        CPP
98
98
    Exposed-modules:    Data.Packed,
99
99
                        Data.Packed.Vector,
100
100
                        Data.Packed.Matrix,
 
101
                        Data.Packed.Foreign,
101
102
                        Numeric.GSL.Differentiation,
102
103
                        Numeric.GSL.Integration,
103
104
                        Numeric.GSL.Fourier,
134
135
    C-sources:          lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c,
135
136
                        lib/Numeric/GSL/gsl-aux.c
136
137
 
137
 
    cpp-options:        -DVECTOR -DBINARY
 
138
    cpp-options:        -DBINARY
138
139
 
139
140
 -- ghc-prof-options:   -auto
140
141