forked from Eelis/geordi
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgeordi.cabal
75 lines (65 loc) · 2.91 KB
/
geordi.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
name: geordi
version: 0
cabal-version: >= 1.2
license: PublicDomain
homepage: http://www.eelis.net/geordi/
maintainer: [email protected]
bug-reports: mailto:[email protected]
package-url: http://www.eelis.net/geordi/snapshots/
build-type: Custom
data-files: jail-config compile-config prelude/*.hpp prelude/*.cpp
flag irc
description: Build IRC front end
default: True
manual: True
flag xmpp
description: Build XMPP front end
default: False
flag testsuite
description: Build test suite
default: True
executable geordi-mkrt
extensions: UnicodeSyntax
main-is: Mkrt.hs
hs-source-dirs: src
build-depends: filepath, process, base>=4, deepseq, mtl >= 2.0.1.0, syb, unix, utf8-string, network, containers, readline, parsec, Diff, directory, regex-compat, base-unicode-symbols>=0.1.4, setops>=0.1, streams>=0.7, semigroups>=0.5
executable geordi-local
other-modules: Sys, EvalCxx, SysCalls, Flock, Ptrace
ghc-options: -Wall -fno-warn-unused-binds -fno-warn-unused-do-bind -fno-warn-orphans -O0
build-tools: hsc2hs
build-depends: base>=4, deepseq, mtl >= 2.0.1.0, syb, unix, utf8-string, network, containers, readline, parsec, Diff, directory, regex-compat, base-unicode-symbols>=0.1.4, setops>=0.1, streams>=0.7, semigroups>=0.5, pointed>=0.1.3, setlocale
main-is: Local.hs
hs-source-dirs: src
executable geordi-testsuite
main-is: Testsuite.hs
if flag(testsuite)
other-modules: Sys, EvalCxx, SysCalls, Flock, Ptrace
ghc-options: -Wall -fno-warn-unused-binds -fno-warn-unused-do-bind -fno-warn-orphans -O0
build-tools: hsc2hs
build-depends: base>=4, deepseq, mtl >= 2.0.1.0, syb, unix, utf8-string, network, containers, parsec, Diff, directory, regex-compat, base-unicode-symbols>=0.1.4, setops>=0.1, streams>=0.7, semigroups>=0.5, pointed>=0.1.3
hs-source-dirs: src
else
buildable: False
executable geordi-irc
main-is: IrcBot.hs
if flag(irc)
other-modules: Sys, EvalCxx, SysCalls, Flock, Ptrace
ghc-options: -Wall -fno-warn-unused-binds -fno-warn-unused-do-bind -fno-warn-orphans -O0
build-tools: hsc2hs
build-depends: base>=4, deepseq, mtl >= 2.0.1.0, syb, unix, utf8-string, network, containers, parsec, Diff, directory, regex-compat, irc, bytestring, base-unicode-symbols>=0.1.4, setops>=0.1, streams>=0.7, semigroups>=0.5, pointed>=0.1.3, setlocale
hs-source-dirs: src
else
buildable: False
executable geordi-xmpp
main-is: XmppBot.hs
if flag(xmpp)
other-modules: Sys, EvalCxx, SysCalls, Flock, Ptrace
ghc-options: -Wall -fno-warn-unused-binds -fno-warn-unused-do-bind -fno-warn-orphans -O0
build-tools: hsc2hs
build-depends: base, deepseq, mtl >= 2.0.1.0, syb, unix, utf8-string, network, containers, parsec, Diff, directory, regex-compat, XMPP, base-unicode-symbols>=0.1.4, setops>=0.1, pointed>=0.1.3, setlocale
hs-source-dirs: src
else
buildable: False
source-repository head
type: git
location: http://github.com/Eelis/geordi.git