78 lines
2.3 KiB
Text
78 lines
2.3 KiB
Text
-- Initial Hufflepdf.cabal generated by cabal init. For further
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: Hufflepdf
|
|
version: 0.2.0.0
|
|
synopsis: A PDF parser
|
|
-- description:
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Tissevert
|
|
maintainer: tissevert+devel@marvid.fr
|
|
-- copyright:
|
|
category: Data
|
|
build-type: Simple
|
|
extra-source-files: ChangeLog.md
|
|
cabal-version: >=1.10
|
|
|
|
library
|
|
exposed-modules: PDF
|
|
, PDF.CMap
|
|
, PDF.EOL
|
|
, PDF.Object
|
|
, PDF.Output
|
|
, PDF.Text
|
|
, PDF.Update
|
|
, PDF.Parser
|
|
other-modules: Data.ByteString.Char8.Util
|
|
, PDF.Body
|
|
-- other-extensions:
|
|
build-depends: attoparsec
|
|
, base >=4.9 && <4.13
|
|
, bytestring
|
|
, containers
|
|
, mtl
|
|
, text
|
|
, utf8-string
|
|
hs-source-dirs: src
|
|
ghc-options: -Wall
|
|
default-language: Haskell2010
|
|
|
|
executable equivalent
|
|
main-is: examples/equivalent.hs
|
|
build-depends: base
|
|
, bytestring
|
|
, Hufflepdf
|
|
ghc-options: -Wall
|
|
default-language: Haskell2010
|
|
|
|
executable getObj
|
|
main-is: examples/getObj.hs
|
|
build-depends: base
|
|
, bytestring
|
|
, containers
|
|
, Hufflepdf
|
|
, zlib
|
|
ghc-options: -Wall
|
|
default-language: Haskell2010
|
|
|
|
executable debug
|
|
main-is: examples/debug.hs
|
|
build-depends: base
|
|
, bytestring
|
|
, containers
|
|
, Hufflepdf
|
|
, mtl
|
|
ghc-options: -Wall
|
|
default-language: Haskell2010
|
|
|
|
executable getText
|
|
main-is: examples/getText.hs
|
|
build-depends: base
|
|
, bytestring
|
|
, containers
|
|
, Hufflepdf
|
|
, mtl
|
|
, zlib
|
|
ghc-options: -Wall
|
|
default-language: Haskell2010
|