]> gitweb.michael.orlitzky.com - dead/htsn.git/blob - htsn.cabal
Add the TSN directory as deps in the makefile.
[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.6,
22 configurator == 0.2.*,
23 directory == 1.2.*,
24 filepath == 1.3.*,
25 hxt == 9.3.*,
26 network == 2.4.*,
27 transformers == 0.3.*,
28 unix == 2.6.*
29
30 main-is:
31 Main.hs
32
33 hs-source-dirs:
34 src/
35
36 ghc-options:
37 -Wall
38 -fwarn-hi-shadowing
39 -fwarn-missing-signatures
40 -fwarn-name-shadowing
41 -fwarn-orphans
42 -fwarn-type-defaults
43 -fwarn-tabs
44 -fwarn-incomplete-record-updates
45 -fwarn-monomorphism-restriction
46 -fwarn-unused-do-bind
47 -rtsopts
48 -threaded
49 -optc-O3
50 -optc-march=native
51 -O2
52
53 ghc-prof-options:
54 -prof
55 -auto-all
56 -caf-all
57