-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGenI.cabal
172 lines (163 loc) · 5.69 KB
/
GenI.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
Name: GenI
Version: 0.23.20130212
License: GPL
License-file: LICENSE
Author: Carlos Areces and Eric Kow
Category: Natural Language Processing
Synopsis: A natural language generator (specifically, an FB-LTAG surface realiser)
Description: A natural language generator (specifically, an FB-LTAG surface realiser)
Homepage: http://projects.haskell.org/GenI
Maintainer: geni-users@loria.fr
Build-Type: Simple
Cabal-Version: >=1.14
data-files: AUTHORS, README.markdown, NEWS, GenI.cabal,
examples/artificial/lexicon,
examples/artificial/trees,
examples/artificial/suite,
examples/artificial/suite-bad,
examples/chatnoir/lexicon,
examples/chatnoir/trees,
examples/chatnoir/suite,
examples/demo/lexicon,
examples/demo/trees,
examples/demo/README,
examples/demo/suite,
examples/ej/lexicon,
examples/ej/trees,
examples/ej/suite,
examples/nosemantics/lexicon,
examples/nosemantics/trees,
examples/nosemantics/README.txt,
examples/promettre/lexicon,
examples/promettre/trees,
examples/promettre/morphinfo,
examples/promettre/suite,
examples/xmg-example/grammar/Arguments.mg,
examples/xmg-example/grammar/demo-corpus-utf8.txt,
examples/xmg-example/grammar/Entete.mg,
examples/xmg-example/grammar/Evaluations.mg,
examples/xmg-example/grammar/Misc.mg,
examples/xmg-example/grammar/parse-corpus.sh,
examples/xmg-example/grammar/Sem.mg,
examples/xmg-example/grammar/VerbMorph.mg,
examples/xmg-example/lexicon/demo-lemma-utf8.lex,
examples/xmg-example/lexicon/demo-morph-utf8.mph,
examples/xmg-example/Makefile,
examples/xmg-example/README,
examples/xmg-example/suite
extra-source-files: geni-test/NLP/GenI/Test.hs
source-repository head
type: darcs
location: http://hub.darcs.net/kowey/GenI
Flag static
Description: Build a static binary
Default: False
Library
Build-depends: base >= 4 && < 5
, binary >= 0.5.0.2
, bytestring == 0.9.*
, cabal-macosx >= 0.1.2 && < 0.3
, containers >= 0.1
, deepseq
, directory > 1
, errors < 2.0
, filepath == 1.*
, hslogger
, json >= 0.4.3 && < 0.6
, mtl > 1.0
, old-locale
, ordered == 0.1.*
, parsec >= 2
, process > 1
, split >= 0.1.1 && < 0.2
, syb
, text
, time >= 1.1
, transformers
, yaml-light == 0.1.*
if flag(static)
ghc-options: -static -optl-static
Exposed-Modules:
BoolExp,
Data.FullList.Internal,
Data.FullList,
NLP.GenI.Configuration,
NLP.GenI.Console,
NLP.GenI.Control,
NLP.GenI.ErrorIO,
NLP.GenI.FeatureStructure,
NLP.GenI.Flag,
NLP.GenI.General,
NLP.GenI.GeniShow,
NLP.GenI.GeniVal,
NLP.GenI.GeniVal.Internal,
NLP.GenI.Lexicon,
NLP.GenI.Lexicon.Internal,
NLP.GenI.LexicalSelection,
NLP.GenI.LexicalSelection.Types,
NLP.GenI.Main,
NLP.GenI.Parser,
NLP.GenI.Pretty,
NLP.GenI.Semantics,
NLP.GenI.Tag,
NLP.GenI.TestSuite,
NLP.GenI.TreeSchema,
NLP.GenI.Warning,
NLP.GenI.Warning.Internal,
NLP.GenI.Morphology,
NLP.GenI.Morphology.Types,
NLP.GenI.OptimalityTheory,
NLP.GenI.Polarity,
NLP.GenI.Polarity.Internal,
NLP.GenI.Polarity.Types,
NLP.GenI.Automaton,
NLP.GenI.Statistics,
NLP.GenI.Builder,
NLP.GenI.Simple.SimpleBuilder,
NLP.GenI
Other-Modules:
Paths_GenI
Default-language: Haskell2010
Hs-Source-Dirs: src
Ghc-options: -Wall
Ghc-prof-options: -auto-all
Executable geni
Main-Is: geni.hs
Hs-Source-Dirs: geni
Default-language: Haskell2010
Ghc-options: -Wall -rtsopts
Ghc-prof-options: -auto-all
Build-Depends: base >= 4 && < 5
, GenI
, containers >= 0.1
, directory > 1
, errors < 2.0
, filepath == 1.*
, yaml-light == 0.1.*
, hslogger
, json >= 0.4 && < 0.6
, mtl > 1.0
, process > 1
, split == 0.1.*
Test-Suite geni-test
Type: exitcode-stdio-1.0
Main-Is: MainTest.hs
Hs-Source-Dirs: geni-test
Default-language: Haskell2010
Build-Depends: GenI
, base >= 4 && < 5
, containers >= 0.1
, errors < 2.0
, filepath == 1.*
, json
, mtl
, parsec >= 2 && < 3.2
, QuickCheck == 2.4.*
, smallcheck
, HUnit > 1 && < 1.3
, test-framework-hunit
, test-framework-quickcheck2
, test-framework-smallcheck
, test-framework > 0.3
, text
, transformers