summaryrefslogtreecommitdiff
path: root/packages/base
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2014-05-08 08:48:12 +0200
committerAlberto Ruiz <aruiz@um.es>2014-05-08 08:48:12 +0200
commit1925c123d7d8184a1d2ddc0a413e0fd2776e1083 (patch)
treefad79f909d9c3be53d68e6ebd67202650536d387 /packages/base
parenteb3f702d065a4a967bb754977233e6eec408fd1f (diff)
empty hmatrix-base
Diffstat (limited to 'packages/base')
-rw-r--r--packages/base/LICENSE26
-rw-r--r--packages/base/Setup.lhs5
-rw-r--r--packages/base/hmatrix-base.cabal45
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 @@
1Copyright (c) 2006-2014 Alberto Ruiz and other contributors
2
3All rights reserved.
4
5Redistribution and use in source and binary forms, with or without
6modification, 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
16THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY
20DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23ON 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
25SOFTWARE, 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 @@
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