deka-0.4.0.4: deka.cabal
name: deka
version: 0.4.0.4
synopsis: Decimal floating point arithmetic
description:
deka provides decimal floating point arithmetic. It
is based on the decNumber C library, which is available
at
.
<http://speleotrove.com/decimal/decnumber.html>
.
decNumber, in turn, implements the General Decimal Arithmetic
Specification, which is available at
.
<http://speleotrove.com/decimal/>
.
For more on deka, please see the Github home page at
.
<https://github.com/massysett/deka>
homepage: http://www.github.com/massysett/deka
license: BSD3
license-file: LICENSE
author: Omari Norman
maintainer: omari@smileystation.com
copyright: 2014 Omari Norman
category: Math
build-type: Configure
extra-source-files: README.md ChangeLog
current-versions.txt minimum-versions.txt
configure
decnumber/src/decNumberLocal.h.in
decnumber/src/decCommon.c
decnumber/src/decBasic.c
decnumber/src/decContext.h
decnumber/src/decQuad.h
decnumber/src/decDPD.h
cabal-version: >=1.10
tested-with: GHC==7.4.1 GHC==7.6.3, GHC ==7.8.2
library
hs-source-dirs: lib
exposed-modules:
Data.Deka
, Data.Deka.Quad
, Data.Deka.Docs
, Data.Deka.Docs.Examples
other-modules:
Data.Deka.Decnumber
, Data.Deka.Internal
build-depends:
base >=4.5.0.0 && < 4.8
, bytestring >=0.9.2.1 && < 0.11
ghc-options: -Wall
default-language: Haskell2010
c-sources:
decnumber/src/decQuad.c
decnumber/src/decContext.c
include-dirs:
decnumber/src
-- The test suite does not have deka listed in the build-depends.
-- This lengthens the compilation times but it allows the test suite
-- to have access to Data.Deka.Internal, which is critical for
-- testing.
Test-Suite tasty-test
Build-depends:
base >=4.5.0.0 && < 4.8
, tasty-quickcheck >=0.3.1 && < 0.9
, tasty >=0.7 && < 0.9
, QuickCheck >=2.6 && < 2.8
, bytestring >=0.9.2.1 && < 0.11
other-modules:
Data.Deka
, Data.Deka.Internal
, Data.Deka.Decnumber
, Data.Deka.Quad
, Data.Deka.Docs
, Data.Deka.Docs.Examples
, DataDir
, DataDir.DekaDir
, DataDir.DekaTest
, DataDir.DekaDir.QuadTest
type: exitcode-stdio-1.0
hs-source-dirs: test lib
ghc-options: -Wall -rtsopts -fprof-auto
main-is: tasty-test.hs
default-language: Haskell2010
c-sources:
decnumber/src/decQuad.c
decnumber/src/decContext.c
include-dirs:
decnumber/src