-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilesequence.cabal
54 lines (49 loc) · 1.99 KB
/
filesequence.cabal
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: filesequence
version: 0.1
synopsis: Library and tools to manipulate sequences of files
build-type: Custom
cabal-version: >= 1.8
Library
exposed-modules: System.FileSequence,
System.FileSequence.Manip,
System.FileSequence.Status,
System.FileSequence.Format,
System.FileSequence.Hash,
System.FileSequence.FrameList,
System.FileSequence.FrameList.IntervalTree,
System.FileSequence.FrameList.TupleList,
System.FileSequence.Padding
System.FileSequence.Internal
build-depends: base, posix-paths, HTF, utf8-string
, regex-pcre-builtin, filepath, directory
, parallel, unix, bytestring, cryptohash, QuickCheck, template-haskell
ghc-options: -Wall -O2 -rtsopts
hs-source-dirs: src/
executable seqls
build-depends: base, utf8-string, regex-pcre-builtin,
filepath, directory, filesequence, bytestring, template-haskell
ghc-options: -Wall -O2 -rtsopts
hs-source-dirs: src/Applications/SeqTools/
main-is: Seqls.hs
executable seqsum
build-depends: base, utf8-string, filesequence, cryptohash >= 0.9, directory
ghc-options: -Wall -O2 -rtsopts
hs-source-dirs: src/Applications/SeqTools/
main-is: Seqsum.hs
executable seqcp
build-depends: base, filesequence, cryptohash >= 0.9, directory, filepath
ghc-options: -Wall -O2 -rtsopts
hs-source-dirs: src/Applications/SeqTools/
main-is: Seqcp.hs
test-suite FileSequenceTests
build-depends: base >= 4 && < 5, HTF, filesequence, bytestring
ghc-options: -O2 -Wall
hs-source-dirs: tests
main-is: Main.hs
type: exitcode-stdio-1.0
benchmark bench-builder-all
build-depends: base, deepseq, filesequence, random, criterion
ghc-options: -O2 -Wall
hs-source-dirs: bench
main-is: Benchmarks.hs
type: exitcode-stdio-1.0