-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanorak.cabal
51 lines (48 loc) · 1.94 KB
/
anorak.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
name: Anorak
version: 0.1
cabal-version: >= 1.10
build-type: Simple
synopsis: A football statistics package.
description: Generates HTML pages containing league tables, form tables,
sequences and other statistics for one or more football
leagues. Input data is provided in the form of the .rlt files
used by the Football Statistics Applet
(see <https://fsa.dev.java.net>)
license: GPL
license-file: LICENCE.txt
author: Daniel W. Dyer
copyright: (C) 2008-2013 Daniel W. Dyer
homepage: http://wiki.github.com/dwdyer/anorak/
bug-reports: http://github.com/dwdyer/anorak/issues
source-repository head
type: git
location: git://github.com/dwdyer/anorak.git
executable anorak
main-is: Main.hs
other-modules: Anorak.Aggregates,
Anorak.Config,
Anorak.FeatureExtractor
Anorak.Goals,
Anorak.Publisher,
Anorak.Results,
Anorak.RLTParser,
Anorak.Sequences,
Anorak.Tables,
Util.File,
Util.List,
Util.Maths,
Util.Tuple
build-depends: attoparsec, base, bytestring, containers, directory, filepath, HStringTemplate >= 0.6.3, time, xml
default-language: Haskell2010
hs-source-dirs: src/haskell
ghc-options: -Wall -O2
test-suite test
type: exitcode-stdio-1.0
main-is: Tests.hs
other-modules: Anorak.Results,
Anorak.Tests,
Util.List,
Util.Tests
build-depends: base, bytestring, containers, old-locale, QuickCheck < 2, time
default-language: Haskell2010
hs-source-dirs: src/haskell