-
Notifications
You must be signed in to change notification settings - Fork 0
/
gt-tools.cabal
65 lines (61 loc) · 2.33 KB
/
gt-tools.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
name: gt-tools
version: 0.2.1
cabal-version: >= 1.8
build-type: Simple
license: GPL
license-file: LICENSE
copyright: Mikhail S. Pobolovets 2009-2010
maintainer: Mikhail S. Pobolovets <[email protected]>
homepage: http://github.com/styx/gtc
package-url: git://github.com/styx/gtc.git
bug-reports: http://github.com/styx/gtc/issues
synopsis: Console and GUI interface for Google Translate service
description: This package consist from console backend, GUI backend and Core module
for Google Translate service. It allows you to translate words and sentences
between different languages.
category: Tools
author: Mikhail S. Pobolovets
stability: stable
tested-with: GHC==7.6.1
data-files: LICENSE README Gtg/main.glade
data-dir: ""
extra-source-files: Setup.hs
flag gui
description: Use this flag if you wish to build GUI version
default: False
executable gtc
main-is: gtc.hs
buildable: True
ghc-options: -Wall
hs-source-dirs: ., Gtc
other-modules: Gt.Core, Gt.Helpers, Gt.Langs, Gt.Net, Gt.Translation
build-depends:
base >= 4.4 && < 5,
containers,
extensible-exceptions,
haskeline,
HTTP,
json,
mtl,
unix,
url,
utf8-string >= 0.3.6
executable gtg
main-is: gtg.hs
ghc-options: -Wall
hs-source-dirs: ., Gtg
other-modules: Gt.Core, Gt.Helpers, Gt.Langs, Gt.Net, Gt.Translation
if flag(gui)
buildable: True
build-depends:
base >= 4.2 && < 5,
containers,
HTTP,
json,
glade,
gtk >= 0.13,
text,
url,
utf8-string >= 0.3.6
else
buildable: False