]> gitweb.michael.orlitzky.com - mailbox-count.git/blob - mailbox-count.cabal
3dfe80d10adacbae95eeeda9de00cb8c16b72832
[mailbox-count.git] / mailbox-count.cabal
1 name: mailbox-count
2 version: 0.1.0
3 cabal-version: >= 1.8
4 author: Michael Orlitzky
5 maintainer: Michael Orlitzky <michael@orlitzky.com>
6 license: GPL-3
7 license-file: doc/LICENSE
8 homepage: http://michael.orlitzky.com/code/mailbox-count.php
9 bug-reports: mailto:michael@orlitzky.com
10 category: Mail, Utils
11 build-type: Simple
12 extra-source-files:
13 doc/man1/mailbox-count.1
14 synopsis:
15 Count mailboxes in a SQL database.
16 description:
17 Count mailboxes in a SQL database.
18
19 executable mailbox-count
20 build-depends:
21 base == 4.*,
22 cmdargs == 0.10.*
23
24 main-is:
25 Main.hs
26
27 hs-source-dirs:
28 src/
29
30 --other-modules:
31
32 ghc-options:
33 -Wall
34 -fwarn-hi-shadowing
35 -fwarn-missing-signatures
36 -fwarn-name-shadowing
37 -fwarn-orphans
38 -fwarn-type-defaults
39 -fwarn-tabs
40 -fwarn-incomplete-record-updates
41 -fwarn-monomorphism-restriction
42 -fwarn-unused-do-bind
43 -rtsopts
44 -threaded
45 -optc-O3
46 -optc-march=native
47
48
49 test-suite doctests
50 type: exitcode-stdio-1.0
51 hs-source-dirs: test
52 main-is: Doctests.hs
53 build-depends:
54 base == 4.*,
55 -- Additional test dependencies.
56 doctest == 0.9.*,
57 filemanip == 0.3.6.*
58
59 -- It's not entirely clear to me why I have to reproduce all of this.
60 ghc-options:
61 -Wall
62 -fwarn-hi-shadowing
63 -fwarn-missing-signatures
64 -fwarn-name-shadowing
65 -fwarn-orphans
66 -fwarn-type-defaults
67 -fwarn-tabs
68 -fwarn-incomplete-record-updates
69 -fwarn-monomorphism-restriction
70 -fwarn-unused-do-bind
71 -rtsopts
72 -threaded
73 -optc-O3
74 -optc-march=native
75
76
77 source-repository head
78 type: git
79 location: http://michael.orlitzky.com/git/mailbox-count.git
80 branch: master