]> gitweb.michael.orlitzky.com - mailbox-count.git/blob - mailbox-count.cabal
Begin throwing real code together.
[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 configurator == 0.2.*,
24 containers == 0.5.*,
25 directory == 1.2.*,
26 filepath == 1.3.*,
27 HDBC == 2.4.*,
28 HDBC-postgresql == 2.3.*
29 main-is:
30 Main.hs
31
32 hs-source-dirs:
33 src/
34
35 --other-modules:
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
53
54 test-suite doctests
55 type: exitcode-stdio-1.0
56 hs-source-dirs: test
57 main-is: Doctests.hs
58 build-depends:
59 base == 4.*,
60 -- Additional test dependencies.
61 doctest == 0.9.*,
62 filemanip == 0.3.6.*
63
64 -- It's not entirely clear to me why I have to reproduce all of this.
65 ghc-options:
66 -Wall
67 -fwarn-hi-shadowing
68 -fwarn-missing-signatures
69 -fwarn-name-shadowing
70 -fwarn-orphans
71 -fwarn-type-defaults
72 -fwarn-tabs
73 -fwarn-incomplete-record-updates
74 -fwarn-monomorphism-restriction
75 -fwarn-unused-do-bind
76 -rtsopts
77 -threaded
78 -optc-O3
79 -optc-march=native
80
81
82 source-repository head
83 type: git
84 location: http://michael.orlitzky.com/git/mailbox-count.git
85 branch: master