-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhpdft.cabal
78 lines (70 loc) · 2.94 KB
/
hpdft.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
cabal-version: 3.0
name: hpdft
version: 0.1.1.3
synopsis: A tool for looking through PDF file using Haskell
description:
A command line PDF-to-text converter. It may take a much longer than other similar tools but could yield better results.
This package can also serve as a library for working with text data in PDF files.
You could write your own PDF-to-text converter for some particular PDF files, utilizing any meta data or special data structures of those.
homepage: https://github.com/k16shikano/hpdft
license: MIT
license-file: LICENSE
author: Keiichiro Shikano
maintainer: [email protected]
-- copyright:
category: PDF
build-type: Simple
extra-source-files: README.md
data-dir: data/
data-files: map/Adobe-Japan1-6.map
library
hs-source-dirs: src/
exposed-modules: PDF.PDFIO
, PDF.ContentStream
, PDF.Character
, PDF.Cmap
, PDF.Definition
, PDF.DocumentStructure
, PDF.Outlines
, PDF.Object
, PDF.OpenType
, PDF.CFF
, PDF.Type1
other-modules: Paths_hpdft
other-extensions: OverloadedStrings
build-depends: attoparsec >= 0.14.4 && < 0.15
, base >= 4.18.0 && < 4.19
, binary >= 0.8.9 && < 0.9
, bytestring >= 0.11.4 && < 0.12
, containers >= 0.6.7 && < 0.7
, directory >= 1.3.8 && < 1.4
, file-embed >= 0.0.15 && < 0.1
, memory >= 0.18.0 && < 0.19
, optparse-applicative >= 0.18.1 && < 0.19
, parsec >=3.0 && <3.2
, semigroups >= 0.20 && < 0.21
, text >= 2.0.2 && < 2.1
, utf8-string >= 1.0.2 && < 1.1
, zlib >= 0.6.3 && < 0.7
autogen-modules: Paths_hpdft
default-language: Haskell2010
buildable: True
executable hpdft
main-is: hpdft.hs
optimization: 3
hs-source-dirs: .
other-modules: Paths_hpdft
other-extensions: OverloadedStrings
build-depends: base >= 4.18.0 && < 4.19
, bytestring >= 0.11.4 && < 0.12
, hpdft
, memory >= 0.18.0 && < 0.19
, optparse-applicative >= 0.18.1 && < 0.19
, regex-base >= 0.94.0 && < 0.95
, regex-tdfa >= 1.3.2 && < 1.4
, semigroups >= 0.20 && < 0.21
, text >= 2.0.2 && < 2.1
, utf8-string >= 1.0.2 && < 1.1
autogen-modules: Paths_hpdft
default-language: Haskell2010
buildable: True