File: crackNum.cabal

package info (click to toggle)
haskell-cracknum 1.5-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 124 kB
  • ctags: 2
  • sloc: haskell: 522; makefile: 5
file content (36 lines) | stat: -rw-r--r-- 1,331 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Name:                crackNum
Version:             1.5
Synopsis:            Crack various integer, floating-point data formats
Description:         Crack HP, SP and DP floats and 8, 16, 32, 64 bit words and integers.
                     .
                     For details, please see: <http://github.com/LeventErkok/crackNum/>
License:             BSD3
License-file:        LICENSE
Author:              Levent Erkok
Maintainer:          erkokl@gmail.com
Copyright:           Levent Erkok
Category:            Tools
Build-type:          Simple
Cabal-version:       >= 1.14
Extra-Source-Files:  INSTALL, README.md, COPYRIGHT, CHANGES.md

source-repository head
    type:       git
    location:   git://github.com/LeventErkok/crackNum.git

Executable crackNum
   main-is      : Data/Numbers/CrackNum/Main.hs
   ghc-options  : -Wall
   default-language: Haskell2010
   build-depends: base >= 4 && < 5, ieee754, data-binary-ieee754
   other-modules: Data.Numbers.CrackNum
                , Data.Numbers.CrackNum.Utils
                , Data.Numbers.CrackNum.Data

Library
  ghc-options     : -Wall
  default-language: Haskell2010
  Build-Depends   : base >= 4 && < 5, ieee754, data-binary-ieee754
  Exposed-modules : Data.Numbers.CrackNum
  other-modules   : Data.Numbers.CrackNum.Utils
                  , Data.Numbers.CrackNum.Data