fountainhead/fountainhead.cabal

66 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-03-13 10:51:25 +01:00
cabal-version: 2.4
name: fountainhead
version: 0.1.0.0
synopsis: TrueType font parser
description: TrueType font parseer.
2023-03-13 10:58:00 +01:00
bug-reports: https://git.caraus.tech/OSS/fountainhead/issues
homepage: https://git.caraus.tech/OSS/fountainhead
maintainer: belka@caraus.de
2023-11-10 11:57:08 +01:00
author: Eugen Wissner
2023-03-13 10:51:25 +01:00
license-files: LICENSE
license: MPL-2.0
copyright: (c) 2023 Eugen Wissner
category: Graphics
extra-source-files:
CHANGELOG.md
README.txt
2023-11-11 10:57:43 +01:00
common dependencies
build-depends:
2023-12-27 16:19:21 +01:00
bytestring ^>= 0.11.0,
text ^>= 2.0,
zlib ^>= 0.6.3
default-language: Haskell2010
2023-11-11 10:57:43 +01:00
2023-03-13 10:51:25 +01:00
library
2023-11-11 10:57:43 +01:00
import: dependencies
2023-03-13 10:51:25 +01:00
exposed-modules:
2023-12-27 16:19:21 +01:00
Graphics.Fountainhead
2023-11-11 10:57:43 +01:00
Graphics.Fountainhead.Dumper
2023-03-13 10:51:25 +01:00
Graphics.Fountainhead.Parser
Graphics.Fountainhead.Type
Graphics.Fountainhead.TrueType
2023-12-27 16:19:21 +01:00
hs-source-dirs: src
2023-03-13 10:51:25 +01:00
build-depends:
2023-11-10 11:57:08 +01:00
base >= 4.16 && < 5,
2023-03-13 10:51:25 +01:00
containers ^>= 0.6.5,
megaparsec ^>= 9.3,
time ^>= 1.12,
2023-11-10 11:57:08 +01:00
transformers ^>= 0.5,
2023-03-13 10:51:25 +01:00
vector ^>= 0.13.0
2023-11-13 19:18:33 +01:00
ghc-options: -Wall
2023-03-14 09:52:02 +01:00
executable fountainhead
2023-11-11 10:57:43 +01:00
import: dependencies
2023-03-14 09:52:02 +01:00
main-is: Main.hs
default-extensions:
NamedFieldPuns
DuplicateRecordFields
ExplicitForAll
build-depends:
base,
containers,
parser-combinators,
vector,
transformers,
time,
megaparsec,
fountainhead
hs-source-dirs: app
2023-12-27 16:19:21 +01:00
ghc-options: -Wall