]> gitweb.michael.orlitzky.com - dead/htsn.git/blob - htsn.cabal
Initial commit of something working.
[dead/htsn.git] / htsn.cabal
1 name: htsn
2 version: 0.0.1
3 cabal-version: >= 1.8
4 author: Michael Orlitzky
5 maintainer: Michael Orlitzky <michael@orlitzky.com>
6 category: Utils
7 license: GPL-3
8 license-file: doc/LICENSE
9 build-type: Simple
10 extra-source-files:
11 doc/man1/htsn.1
12 synopsis:
13 Parse XML files from The Sports Network feed.
14 description:
15 Parse XML files from The Sports Network feed.
16
17 executable htsn
18 build-depends:
19 ansi-terminal == 0.6.*,
20 base == 4.*,
21 cmdargs >= 0.10.5,
22 configurator == 0.2.*,
23 deepseq == 1.3.*,
24 directory == 1.2.*,
25 filepath == 1.3.*,
26 hxt == 9.3.*,
27 network == 2.4.*,
28 transformers == 0.3.*,
29 unix == 2.6.*
30
31 main-is:
32 Main.hs
33
34 hs-source-dirs:
35 src/
36
37 ghc-options:
38 -Wall
39 -fwarn-hi-shadowing
40 -fwarn-missing-signatures
41 -fwarn-name-shadowing
42 -fwarn-orphans
43 -fwarn-type-defaults
44 -fwarn-tabs
45 -fwarn-incomplete-record-updates
46 -fwarn-monomorphism-restriction
47 -fwarn-unused-do-bind
48 -rtsopts
49 -threaded
50 -optc-O3
51 -optc-march=native
52 -O2
53
54 ghc-prof-options:
55 -prof
56 -auto-all
57 -caf-all
58