]> gitweb.michael.orlitzky.com - dead/lwn-epub.git/blob - lwn-epub.cabal
Begin working on determining the article argument type.
[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 directory == 1.1.*,
16 filepath == 1.3.*,
17 HandsomeSoup == 0.3.*,
18 HUnit == 1.2.*,
19 hxt == 9.*,
20 MissingH == 1.1.*,
21 network == 2.3.*,
22 pandoc == 1.9.*,
23 regex-posix == 0.95.*,
24 test-framework == 0.6.*,
25 test-framework-hunit == 0.2.*,
26 time == 1.*,
27 utf8-string == 0.3.*
28
29 main-is:
30 Main.hs
31
32 hs-source-dirs:
33 src/
34
35 ghc-options:
36 -Wall
37 -fwarn-hi-shadowing
38 -fwarn-missing-signatures
39 -fwarn-name-shadowing
40 -fwarn-orphans
41 -fwarn-type-defaults
42 -fwarn-tabs
43 -fwarn-incomplete-record-updates
44 -fwarn-monomorphism-restriction
45 -fwarn-unused-do-bind
46 -funbox-strict-fields
47 -fexcess-precision
48 -fno-spec-constr-count
49 -rtsopts
50 -threaded
51 -O2
52 -optc-O3
53 -optc-march=native