]> gitweb.michael.orlitzky.com - dead/lwn-epub.git/blob - lwn-epub.cabal
Source reorganization and cleanup.
[dead/lwn-epub.git] / lwn-epub.cabal
1 name: lwn-epub
2 version: 0.0
3 cabal-version: >= 1.8
4 author: Michael Orlitzky
5 maintainer: Michael Orlitzky <michael@orlitzky.com>
6 synopsis:
7 Convert issues of LWN (lwn.net) to EPUB format.
8 build-type: Simple
9
10 executable lwn-epub
11 build-depends:
12 base == 4.5.*,
13 bytestring == 0.9.*,
14 cmdargs == 0.9.*,
15 ConfigFile == 1.*,
16 containers == 0.*,
17 curl == 1.*,
18 directory == 1.1.*,
19 download-curl == 0.1.*,
20 filepath == 1.3.*,
21 HandsomeSoup == 0.3.*,
22 HUnit == 1.2.*,
23 hxt == 9.*,
24 MissingH == 1.1.*,
25 network == 2.3.*,
26 pandoc == 1.9.*,
27 regex-posix == 0.95.*,
28 temporary == 1.*,
29 test-framework == 0.6.*,
30 test-framework-hunit == 0.2.*,
31 time == 1.*,
32 utf8-string == 0.3.*
33
34 main-is:
35 Main.hs
36
37 hs-source-dirs:
38 src/
39
40 ghc-options:
41 -Wall
42 -fwarn-hi-shadowing
43 -fwarn-missing-signatures
44 -fwarn-name-shadowing
45 -fwarn-orphans
46 -fwarn-type-defaults
47 -fwarn-tabs
48 -fwarn-incomplete-record-updates
49 -fwarn-monomorphism-restriction
50 -fwarn-unused-do-bind
51 -funbox-strict-fields
52 -fexcess-precision
53 -fno-spec-constr-count
54 -rtsopts
55 -threaded
56 -O2
57 -optc-O3
58 -optc-march=native