-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPDFLibrary.cabal
More file actions
executable file
·39 lines (34 loc) · 1.09 KB
/
PDFLibrary.cabal
File metadata and controls
executable file
·39 lines (34 loc) · 1.09 KB
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
name: PDFLibrary
version: 0.1
Synopsis: Build and manipulate Adobe PDF documents.
Description:
The PDFLibrary package lets you process PDF documents in Haskell.
It includes a parser and pretty printer, along with an abstract
representation of PDFs letting you either manipulate input documents
or construct new PDFs programmatically.
category : Text
license : BSD3
license-file : LICENSE
author : Dylan McNamee <dylan@galois.com>
maintainer : dylan@galois.com
cabal-version : >= 1.2
build-type : Simple
--Not yet:
extra-source-files: Main.hs
-- README
-- examples/Rotate.hs
flag new-base
Description: Build with new smaller base library
Default: False
library
Exposed-modules: Text.PDF.Types,
Text.PDF.Document,
Text.PDF.Utils,
Text.PDF.Transformations
Ghc-Options: -Wall
build-depends: base, parsec, containers, array, mtl
build-depends: base >= 4
executable main {
main-is: Main.hs
ghc-options: -Wall
}