From 197e88c3b56d28840217010a2871c6ea3a4dd1a4 Mon Sep 17 00:00:00 2001 From: Alberto Ruiz Date: Wed, 21 May 2014 10:30:55 +0200 Subject: update dependencies, move examples etc --- packages/base/hmatrix.cabal | 86 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 packages/base/hmatrix.cabal (limited to 'packages/base/hmatrix.cabal') diff --git a/packages/base/hmatrix.cabal b/packages/base/hmatrix.cabal new file mode 100644 index 0000000..5f3c48e --- /dev/null +++ b/packages/base/hmatrix.cabal @@ -0,0 +1,86 @@ +Name: hmatrix +Version: 0.16.0.2 +License: BSD3 +License-file: LICENSE +Author: Alberto Ruiz +Maintainer: Alberto Ruiz +Stability: provisional +Homepage: https://github.com/albertoruiz/hmatrix +Synopsis: Numeric Linear Algebra +Description: Dense linear algebra based on BLAS and LAPACK. +Category: Math +tested-with: GHC==7.8 + +cabal-version: >=1.8 + +build-type: Simple + +extra-source-files: THANKS.md INSTALL.md CHANGELOG + +extra-source-files: src/C/lapack-aux.h + +library + + Build-Depends: base, + binary, + array, + deepseq, + random, + storable-complex, + vector >= 0.8 + + hs-source-dirs: src + + exposed-modules: Data.Packed, + Data.Packed.Vector, + Data.Packed.Matrix, + Data.Packed.Foreign, + Data.Packed.ST, + Data.Packed.Development, + + Numeric.LinearAlgebra.LAPACK + Numeric.LinearAlgebra.Algorithms + Numeric.Container + Numeric.LinearAlgebra.Util + + Numeric.LinearAlgebra + Numeric.LinearAlgebra.Devel + Numeric.LinearAlgebra.Data + + other-modules: Data.Packed.Internal, + Data.Packed.Internal.Common, + Data.Packed.Internal.Signatures, + Data.Packed.Internal.Vector, + Data.Packed.Internal.Matrix + Data.Packed.IO + Numeric.Chain + Numeric.Vectorized + Numeric.Vector + Numeric.Matrix + Data.Packed.Internal.Numeric + Numeric.LinearAlgebra.Util.Convolution + Numeric.LinearAlgebra.Random + Numeric.Conversion + + C-sources: src/C/lapack-aux.c + src/C/vector-aux.c + + + extensions: ForeignFunctionInterface, + CPP + + ghc-options: -Wall + -fno-warn-missing-signatures + -fno-warn-orphans + + cc-options: -O4 -msse2 -Wall + + cpp-options: -DBINARY + + extra-libraries: blas lapack + + +source-repository head + type: git + location: https://github.com/albertoruiz/hmatrix + -- cgit v1.2.3