]> gitweb.michael.orlitzky.com - dead/harbl.git/blob - harbl.cabal
Initial commit of a big mess that sort of looks like it works.
[dead/harbl.git] / harbl.cabal
1 name: harbl
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 synopsis:
11 Real-time Blacklist (RBL) library.
12 description:
13 Provides utility functions for performing blacklist lookups.
14
15
16 executable harbl
17 build-depends:
18 base >= 4.6 && < 5,
19 parsec >= 3
20
21 main-is:
22 Main.hs
23
24 hs-source-dirs:
25 src/
26
27 ghc-options:
28 -Wall
29 -fwarn-hi-shadowing
30 -fwarn-missing-signatures
31 -fwarn-name-shadowing
32 -fwarn-orphans
33 -fwarn-type-defaults
34 -fwarn-tabs
35 -fwarn-incomplete-record-updates
36 -fwarn-monomorphism-restriction
37 -fwarn-unused-do-bind
38 -O2
39
40 ghc-prof-options:
41 -prof
42 -fprof-auto
43 -fprof-cafs
44
45 source-repository head
46 type: git
47 location: http://michael.orlitzky.com/git/harbl.git
48 branch: master