source: trunk/fec.cabal

Last change on this file was 307b550, checked in by Ramakrishnan Muthukrishnan <ram@…>, 9 years ago

zfec: rearrange files

  • Property mode set to 100644
File size: 1.3 KB
Line 
1name:            fec
2version:         0.1.1
3license:         GPL
4license-file:    README.rst
5author:          Adam Langley <agl@imperialviolet.org>
6maintainer:      Adam Langley <agl@imperialviolet.org>
7description:     This code, based on zfec by Zooko, based on code by Luigi
8         Rizzo implements an erasure code, or forward error
9         correction code. The most widely known example of an erasure
10         code is the RAID-5 algorithm which makes it so that in the
11         event of the loss of any one hard drive, the stored data can
12         be completely recovered.  The algorithm in the zfec package
13         has a similar effect, but instead of recovering from the loss
14         of only a single element, it can be parameterized to choose in
15         advance the number of elements whose loss it can tolerate.
16build-type:      Simple
17homepage:        http://allmydata.org/source/zfec
18synopsis:        Forward error correction of ByteStrings
19category:        Codec
20build-depends:   base, bytestring>=0.9
21stability:       provisional
22tested-with:     GHC == 6.8.2
23exposed-modules: Codec.FEC
24extensions:      ForeignFunctionInterface
25hs-source-dirs:  haskell
26ghc-options:     -Wall
27c-sources:       zfec/fec.c
28cc-options:      -std=c99
29include-dirs:    zfec
30extra-source-files: zfec/fec.h, COPYING.GPL, COPYING.TGPPL.rst
Note: See TracBrowser for help on using the repository browser.