-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailkwds.cabal
69 lines (65 loc) · 1.78 KB
/
mailkwds.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: mailkwds
version: 0.1
category: Email, Text
synopsis: Edit email keywords/labels/tags stored in a message header field.
description:
@mailkwds@ allows to modify keywords, labels or tags from
specifiable header fields like @Keywords@, @X-Keywords@ or
@X-Label@.
.
It can add to, clear, remove from, set and tidy up the set
of keywords of the message.
.
@mailkwds@ is intended to be run as a message filter from a
mail delivery agent such as @procmail@ or @maildrop@.
homepage: https://github.com/seschwar/mailkwds
copyright: Copyright (c) 2009-2014, Sebastian Schwarz <[email protected]>
license: MIT
license-file: LICENSE
author: Sebastian Schwarz <[email protected]>
maintainer: Sebastian Schwarz <[email protected]>
bug-reports: https://github.com/seschwar/mailkwds/issues
build-type: Simple
cabal-version: >= 1.2
extra-source-files:
INSTALL,
README
--data-files: mailkwds.1
Source-repository head
type: git
location: https://github.com/seschwar/mailkwds.git
Flag test
default: False
description: build test executable
Executable test
if flag(test)
-- build-depends: QuickCheck >= 2.1,
-- test-framework >= 0.2,
-- test-framework-quickcheck2 >= 0.2
buildable: True
else
buildable: False
hs-source-dirs:
src,
test
main-is: Test.hs
other-modules:
Args,
Utils,
MailKwds
ghc-options: -O2 -Wall
Executable mailkwds
build-depends:
base >= 4.0,
bytestring >= 0.9,
containers >= 0.3,
parsec >= 3.1,
stringsearch >= 0.3,
transformers >= 0.2
hs-source-dirs: src
main-is: Main.hs
other-modules:
Args,
Utils,
MailKwds
ghc-options: -O2 -Wall