packages feed

opentype-0.0.1: opentype.cabal

name: opentype
version: 0.0.1
cabal-version: >=1.8
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: Kristof Bastiaensen (2014)
maintainer: Kristof Bastiaensen
stability: Very Unstable
bug-reports: https://github.com/kuribas/haskell-opentype/issues
synopsis: Opentype loading and writing
description: This library supports loading and writing of opentype files.
category: Typography
author: Kristof Bastiaensen
data-dir: ""
 
source-repository head
  type: git
  location: https://github.com/kuribas/haskell-opentype
 
library
  build-depends:
    base >=3 && <5, binary >=0.8.1.0,
    bytestring >0.10.0, containers >=0.5.3, ghc >=7.10.0, time >1.4.0,
    vector >=0.10, pretty-hex >=1.0
  exposed-modules: Opentype.Fileformat
  exposed: True
  buildable: True
  other-modules:
    Opentype.Fileformat.Types
    Opentype.Fileformat.Glyph
    Opentype.Fileformat.Cmap
    Opentype.Fileformat.Head
    Opentype.Fileformat.Hhea
    Opentype.Fileformat.Maxp
    Opentype.Fileformat.Name
    Opentype.Fileformat.Post
    Opentype.Fileformat.Kern
    Opentype.Fileformat.OS2
  ghc-options: -Wall
 
test-suite test
  type: exitcode-stdio-1.0
  main-is: test.hs
  buildable: True
  hs-source-dirs: tests