packages feed

LibZip-0.11: LibZip.cabal

Name:          LibZip
Version:       0.11
License:       BSD3
License-File:  LICENSE
Author:        Sergey Astanin
Maintainer:    Sergey Astanin <s.astanin@gmail.com>
Homepage:      http://bitbucket.org/astanin/hs-libzip/
Bug-reports:   http://bitbucket.org/astanin/hs-libzip/issues/

Category:      Codec, Foreign
Synopsis:      Bindings to libzip, a library for manipulating zip archives.
Description:
  libzip is a C library for reading, creating, and modifying zip archives.
  This package allows to use it from Haskell code.

Build-Type:     Simple
Cabal-Version:  >= 1.8

Extra-Source-Files:
    examples/hzip.hs
  , runTests.hs, Tests/Common.hs
  , Tests/MonadicTests.hs, Tests/test.zip

Library
  Exposed-Modules:
      Codec.Archive.LibZip
      Codec.Archive.LibZip.Types
  Other-Modules:
      Codec.Archive.LibZip.Errors
  Build-Depends:
      base >= 4.0 && < 5.0
    , bindings-libzip >= 0.11 && < 0.12
    , bytestring
    , filepath
    , time
    , mtl
    , bytestring
    , utf8-string
  GHC-Options:
      -Wall

Test-Suite test-libzip
  Type:                 exitcode-stdio-1.0
  Main-Is:              runTests.hs
  Build-Depends:
      LibZip
    , base >= 4.0 && < 5.0
    , bindings-libzip >= 0.11 && < 0.12
    , directory
    , filepath
    , HUnit
    , mtl
    , time
    , bytestring
    , utf8-string