-
Notifications
You must be signed in to change notification settings - Fork 10
/
FontyFruity.cabal
77 lines (69 loc) · 2.46 KB
/
FontyFruity.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
-- Initial FontyFruity.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: FontyFruity
version: 0.5.3.5
synopsis: A true type file format loader
description:
An haskell Truetype file parser.
.
You can load a font file and extract some curves to be
drawed with a library like Rasterific .
license: BSD3
license-file: LICENSE
author: Vincent Berthoux
maintainer: vincent.berthoux@gmail.com
-- copyright:
category: Graphics, Text, Font
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
extra-source-files: changelog
Source-Repository head
Type: git
Location: https://github.com/Twinside/FontyFruity.git
Source-Repository this
Type: git
Location: https://github.com/Twinside/FontyFruity.git
Tag: v0.5.3.4
library
exposed-modules: Graphics.Text.TrueType
, Graphics.Text.TrueType.Internal
other-modules: Graphics.Text.TrueType.Bytecode
, Graphics.Text.TrueType.MaxpTable
, Graphics.Text.TrueType.Header
, Graphics.Text.TrueType.Glyph
, Graphics.Text.TrueType.Kerning
, Graphics.Text.TrueType.Types
, Graphics.Text.TrueType.OffsetTable
, Graphics.Text.TrueType.CharacterMap
, Graphics.Text.TrueType.LanguageIds
, Graphics.Text.TrueType.HorizontalInfo
, Graphics.Text.TrueType.Name
, Graphics.Text.TrueType.FontFolders
, Graphics.Text.TrueType.FontType
ghc-options: -Wall -O2
ghc-prof-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.5 && < 6
, binary >= 0.5
, bytestring >= 0.10
, containers >= 0.5
, vector >= 0.9
, directory
, text
, filepath
, deepseq >= 1.2
, xml >= 1.3
Executable fontytest
default-language: Haskell2010
Main-Is: fontytest.hs
Hs-Source-Dirs: test-src
ghc-prof-options: -rtsopts -Wall -prof
Build-Depends: base >= 4.5
, FontyFruity
, directory >= 1.2
, bytestring
, vector
, filepath
, binary