2019-05-18 09:49:31 +02:00
|
|
|
-- Initial Hufflepdf.cabal generated by cabal init. For further
|
2019-05-13 08:05:28 +02:00
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
2019-05-18 09:49:31 +02:00
|
|
|
name: Hufflepdf
|
2019-10-14 10:16:14 +02:00
|
|
|
version: 0.2.0.0
|
2019-05-13 08:05:28 +02:00
|
|
|
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
|
2019-05-18 11:09:03 +02:00
|
|
|
, PDF.EOL
|
2019-05-24 10:48:09 +02:00
|
|
|
, PDF.Object
|
2019-05-16 17:06:14 +02:00
|
|
|
, PDF.Output
|
2019-09-23 18:00:47 +02:00
|
|
|
, PDF.Text
|
2019-09-22 01:40:39 +02:00
|
|
|
, PDF.Update
|
2019-05-24 10:48:09 +02:00
|
|
|
other-modules: Data.ByteString.Char8.Util
|
|
|
|
, PDF.Body
|
|
|
|
, PDF.Parser
|
2019-05-13 08:05:28 +02:00
|
|
|
-- other-extensions:
|
2019-05-24 10:48:09 +02:00
|
|
|
build-depends: attoparsec
|
|
|
|
, base >=4.9 && <4.13
|
2019-05-13 08:05:28 +02:00
|
|
|
, bytestring
|
|
|
|
, containers
|
2019-05-16 17:06:14 +02:00
|
|
|
, mtl
|
2019-05-13 08:05:28 +02:00
|
|
|
hs-source-dirs: src
|
2019-05-13 18:22:05 +02:00
|
|
|
ghc-options: -Wall
|
2019-05-13 08:05:28 +02:00
|
|
|
default-language: Haskell2010
|
2019-09-20 22:42:17 +02:00
|
|
|
|
|
|
|
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
|
2019-09-23 18:00:47 +02:00
|
|
|
|
|
|
|
executable getText
|
|
|
|
main-is: examples/getText.hs
|
|
|
|
build-depends: base
|
|
|
|
, bytestring
|
|
|
|
, containers
|
|
|
|
, Hufflepdf
|
|
|
|
, mtl
|
|
|
|
, zlib
|
|
|
|
ghc-options: -Wall
|
|
|
|
default-language: Haskell2010
|