forked from entropia/tip-toi-reveng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtttool.cabal
84 lines (75 loc) · 2.24 KB
/
tttool.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
-- Initial tttool.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: tttool
version: 1.0
synopsis: Working with files for the Tiptoi® pen
description: The Ravensburger Tiptoi® pen is programmed via special
files. Their file format has been reverse engineered; this
is a tool to analyse and create such files.
category: Reverse Engineering
homepage: https://github.com/entropia/tip-toi-reveng
license: MIT
license-file: LICENSE
author: Joachim Breitner
maintainer: [email protected]
copyright: 2013-2014 Joachim Breitner
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
flag old-locale
description:
If false then depend on time >= 1.5.
.
If true then depend on time < 1.5 together with old-locale.
default: False
executable tttool
main-is: tttool.hs
other-modules:
BakedVector,
Constants,
Cypher,
GMEParser,
GMERun,
GMEWriter,
Lint,
OidCode,
OneLineParser,
PrettyPrint,
RangeParser,
TipToiYaml,
TextToSpeech,
KnownCodes,
Types,
Utils
build-depends:
base == 4.5.* || == 4.6.* || == 4.7.* || == 4.8.*,
binary == 0.5.* || == 0.7.*,
bytestring == 0.10.*,
containers == 0.4.* || == 0.5.*,
directory == 1.2.*,
filepath == 1.3.*,
template-haskell >= 2.7 && < 2.11,
ghc-prim,
JuicyPixels == 3.1.* || == 3.2.*,
aeson == 0.7.* || == 0.8.*,
bytestring-builder >= 0.10.4.1.1,
hashable == 1.2.*,
mtl == 2.1.* || == 2.2.*,
text == 0.11.* || == 1.2.*,
parsec == 3.1.*,
process == 1.1.* || == 1.2.*,
vector == 0.10.*,
yaml == 0.8.*
if flag(old-locale)
build-depends: time == 1.4.*, old-locale
else
build-depends: time == 1.5.*
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-fwarn-unused-imports
-rtsopts
-with-rtsopts=-K100M
source-repository head
type: git
location: https://github.com/entropia/tip-toi-reveng