diff options
author | Iavor S. Diatchki <diatchki@galois.com> | 2007-12-21 11:39:47 -0800 |
---|---|---|
committer | Iavor S. Diatchki <diatchki@galois.com> | 2007-12-21 11:39:47 -0800 |
commit | b99baac33e68d5603d0aa9ef699460a7e6a15c1d (patch) | |
tree | f4b0a8bd1a49dec75caab397fddff2a194a0aa00 /mime.cabal |
Initial import.
Diffstat (limited to 'mime.cabal')
-rw-r--r-- | mime.cabal | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mime.cabal b/mime.cabal new file mode 100644 index 0000000..4f02128 --- /dev/null +++ b/mime.cabal @@ -0,0 +1,25 @@ +name: web +version: 0.1 +synopsis: Working with MIME types. +description: Working with MIME types. +category: Web +license: BSD3 +license-file: LICENSE +author: Galois Inc. +maintainer: Galois Inc +Copyright: (c) 2007 Galois Inc. +extra-source-files: scripts/json-rpc.js +homepage: http://docserver/web.git/ +cabal-version: >= 1.2.0 + +flag split-base + +library + if flag(split-base) + build-depends: base >= 3 + else + build-depends: base < 3 + + exposed-modules: MIME.Type, MIME.Parse, MIME.Utils + other-modules: MIME.Base64, MIME.Decode, MIME.QuotedPrintable + ghc-options: -Wall -O2 |