-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
72 lines (67 loc) · 1.47 KB
/
package.yaml
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
name: tex2png-hs
version: 0.4.2
synopsis: Easily convert TeX and LaTeX to PNG images
description: >
"A Haskell port of Xyne's @tex2png@ tool. It is a
wrapper around @latex@ and @dvipng@ and provides
several options for modifying its behaviour, such
as cropping the whitespace around the content,
specifying the DPI, or inputting a full document."
category: LaTeX
author: Amin Bandali
maintainer: [email protected]
copyright: 2016-2017 Amin Bandali, Software Engineering Lab, York University
license: MIT
github: unitb/tex2png-hs
ghc-options:
- -Wall
- -fwarn-tabs
dependencies:
- base >=4.7 && <5
- text
- mtl
library:
source-dirs: src
default-extensions: RankNTypes
ghc-options: -fwarn-unused-imports
exposed-modules:
- TeX2PNG
dependencies:
- filepath
- lens
- directory
- process
- process-extras
- cryptohash-sha256
- bytestring
- base16-bytestring
- either
- cereal
- cereal-text
- th-printf
executables:
tex2png-hs:
main: Main.hs
source-dirs: app
default-extensions: OverloadedStrings
ghc-options:
- -fwarn-unused-imports
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- tex2png-hs
- optparse-applicative <0.14
- optparse-text
- gitrev
- template-haskell
tests:
tex2png-hs-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- tex2png-hs