summaryrefslogtreecommitdiff
path: root/openpgp-asciiarmor.cabal
diff options
context:
space:
mode:
authorClint Adams <clint@softwarefreedom.org>2012-04-25 16:38:48 -0400
committerClint Adams <clint@softwarefreedom.org>2012-04-25 16:38:48 -0400
commit5ed645493e10190f7cddd753bb058e8487037549 (patch)
tree7b80971ad747ff0d1e5e6651e1efe7fe29ec6db6 /openpgp-asciiarmor.cabal
parentf907d986330ac5f88f9e921bdd6c0572d4691003 (diff)
Separate ASCII armor codec into its own package, change license to ISC, and change API toward Stephen Paul Weber's proposal.
Diffstat (limited to 'openpgp-asciiarmor.cabal')
-rw-r--r--openpgp-asciiarmor.cabal49
1 files changed, 49 insertions, 0 deletions
diff --git a/openpgp-asciiarmor.cabal b/openpgp-asciiarmor.cabal
new file mode 100644
index 0000000..4b7e25d
--- /dev/null
+++ b/openpgp-asciiarmor.cabal
@@ -0,0 +1,49 @@
1Name: openpgp-asciiarmor
2Version: 0.0
3Synopsis: OpenPGP (RFC4880) ASCII Armor codec
4Description: OpenPGP (RFC4880) ASCII Armor codec
5Homepage: http://floss.scru.org/openpgp-asciiarmor
6License: OtherLicense
7License-file: LICENSE
8Author: Clint Adams
9Maintainer: Clint Adams <clint@debian.org>
10Copyright: 2012, Clint Adams
11Category: Codec, Data
12Build-type: Simple
13Extra-source-files: tests/suite.hs
14 , tests/data/msg1.asc
15 , tests/data/msg1.gpg
16
17Cabal-version: >= 1.10
18
19
20Library
21 Exposed-modules: Codec.Encryption.OpenPGP.ASCIIArmor
22 , Codec.Encryption.OpenPGP.ASCIIArmor.Decode
23 , Codec.Encryption.OpenPGP.ASCIIArmor.Encode
24 , Codec.Encryption.OpenPGP.ASCIIArmor.Types
25 Other-Modules: Data.Digest.CRC24
26 Build-depends: attoparsec
27 , base > 4 && < 5
28 , base64-bytestring
29 , bytestring
30 , cereal
31 default-language: Haskell98
32
33
34Test-Suite tests
35 type: exitcode-stdio-1.0
36 main-is: tests/suite.hs
37 Build-depends: attoparsec
38 , base > 4 && < 5
39 , base64-bytestring
40 , bytestring
41 , cereal
42 , HUnit
43 , test-framework
44 , test-framework-hunit
45 default-language: Haskell98
46
47source-repository head
48 type: git
49 location: git://git.debian.org/users/clint/openpgp-asciiarmor.git