diff options
author | Alberto Ruiz <aruiz@um.es> | 2014-05-08 08:48:12 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2014-05-08 08:48:12 +0200 |
commit | 1925c123d7d8184a1d2ddc0a413e0fd2776e1083 (patch) | |
tree | fad79f909d9c3be53d68e6ebd67202650536d387 /packages/base | |
parent | eb3f702d065a4a967bb754977233e6eec408fd1f (diff) |
empty hmatrix-base
Diffstat (limited to 'packages/base')
-rw-r--r-- | packages/base/LICENSE | 26 | ||||
-rw-r--r-- | packages/base/Setup.lhs | 5 | ||||
-rw-r--r-- | packages/base/hmatrix-base.cabal | 45 |
3 files changed, 76 insertions, 0 deletions
diff --git a/packages/base/LICENSE b/packages/base/LICENSE new file mode 100644 index 0000000..c4b781e --- /dev/null +++ b/packages/base/LICENSE | |||
@@ -0,0 +1,26 @@ | |||
1 | Copyright (c) 2006-2014 Alberto Ruiz and other contributors | ||
2 | |||
3 | All rights reserved. | ||
4 | |||
5 | Redistribution and use in source and binary forms, with or without | ||
6 | modification, are permitted provided that the following conditions are met: | ||
7 | * Redistributions of source code must retain the above copyright | ||
8 | notice, this list of conditions and the following disclaimer. | ||
9 | * Redistributions in binary form must reproduce the above copyright | ||
10 | notice, this list of conditions and the following disclaimer in the | ||
11 | documentation and/or other materials provided with the distribution. | ||
12 | * Neither the name of the <organization> nor the | ||
13 | names of its contributors may be used to endorse or promote products | ||
14 | derived from this software without specific prior written permission. | ||
15 | |||
16 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
17 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | |||
diff --git a/packages/base/Setup.lhs b/packages/base/Setup.lhs new file mode 100644 index 0000000..4b19c19 --- /dev/null +++ b/packages/base/Setup.lhs | |||
@@ -0,0 +1,5 @@ | |||
1 | #! /usr/bin/env runhaskell | ||
2 | |||
3 | > import Distribution.Simple | ||
4 | > main = defaultMain | ||
5 | |||
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 | |||