packages feed

epub-metadata-4.2: epub-metadata.cabal

name:                epub-metadata
version:             4.2
cabal-version:       >= 1.8
build-type:          Simple
license:             BSD3
license-file:        LICENSE
copyright:           2010-2013 Dino Morelli
author:              Dino Morelli
maintainer:          Dino Morelli <dino@ui3.info>
stability:           experimental
homepage:            http://ui3.info/d/proj/epub-metadata.html
synopsis:            Library for parsing epub document metadata
description:         Library for parsing and manipulating epub document metadata. Supports epub versions 2 and 3.

                     This library was constructed by studying the IDPF specifications for epub documents found here <http://www.idpf.org/epub/20/spec/OPF_2.0.1_draft.htm> and here <http://www.idpf.org/epub/30/spec/epub30-publications.html>
category:            Codec, Text
tested-with:         GHC >= 7.6.2
extra-source-files:  changelog.md
                     doc/dev/notes
                     doc/examples/README
                     doc/examples/*.cabal
                     doc/examples/*.hs
                     doc/hcar/epubmetadata-De.tex
                     README.md
                     testsuite/*.epub
                     testsuite/*.hs
                     testsuite/*.opf
                     testsuite/bookfiles/foo
                     testsuite/bookfiles/mimetype
                     testsuite/bookfiles/content/bar
                     testsuite/Epub2/*.hs
                     testsuite/Epub3/*.hs
                     TODO
                     util/gentags.sh
                     util/prefs/boring
                     util/show-opf.hs

source-repository    head
   type:             darcs
   location:         http://ui3.info/darcs/epub-metadata/

library
   exposed-modules:  Codec.Epub
                     Codec.Epub.Data.Common
                     Codec.Epub.Data.Guide
                     Codec.Epub.Data.Manifest
                     Codec.Epub.Data.Metadata
                     Codec.Epub.Data.Package
                     Codec.Epub.Data.Spine
                     Codec.Epub.Format
                     Codec.Epub.Format.Guide
                     Codec.Epub.Format.Manifest
                     Codec.Epub.Format.Metadata
                     Codec.Epub.Format.Package
                     Codec.Epub.Format.Spine
                     Codec.Epub.Format.Util
                     Codec.Epub.IO
                     Codec.Epub.Parse
                     Codec.Epub.Parse.Guide
                     Codec.Epub.Parse.Manifest
                     Codec.Epub.Parse.Metadata
                     Codec.Epub.Parse.Package
                     Codec.Epub.Parse.Refinements
                     Codec.Epub.Parse.Spine
                     Codec.Epub.Parse.Util
                     Codec.Epub.Util
   build-depends:    base >= 3 && < 5,
                     bytestring,
                     containers,
                     directory,
                     filepath,
                     hxt >= 9,
                     mtl,
                     regex-compat,
                     zip-archive
   hs-source-dirs:   src
   ghc-options:      -Wall -fsimpl-tick-factor=200

test-suite           test-epub-metadata
   type:             exitcode-stdio-1.0
   main-is:          test-main.hs
   build-depends:    base >= 3 && < 5,
                     bytestring,
                     directory,
                     filepath,
                     HUnit,
                     hxt >= 9,
                     mtl,
                     regex-compat,
                     zip-archive
   hs-source-dirs:   src testsuite
   ghc-options:      -Wall -fsimpl-tick-factor=200