packages feed

diagrams-pdf-0.3.1: diagrams-pdf.cabal

name:                diagrams-pdf
version:             0.3.1
synopsis:            PDF backend for diagrams drawing EDSL
homepage:            http://www.alpheccar.org
license:             BSD3
license-file:        LICENSE
Extra-source-files:  README.md, CHANGES.md
author:              alpheccar
maintainer:          misc@alpheccar.org
Bug-reports:         http://github.com/alpheccar/diagrams-pdf/issues
Stability:           Experimental
copyright:           2013, alpheccar.org         
category:            Graphics
build-type:          Simple
Tested-with:         GHC == 7.6.3
cabal-version:       >=1.10
Description:         This package provides a modular backend for rendering
                     diagrams created with the diagrams EDSL to PDF
                     files.  It uses @HPDF@ making it suitable for use on
                     any platform.
                     .
                     It is a very preliminary version where only the
                     diagrams Logo generation has been tested.
                     .
                     The package provides the following modules:
                     .
                     * "Diagrams.Backend.Pdf.CmdLine" - if you're
                       just getting started with diagrams, begin here.
                     .
                     * "Diagrams.Backend.Pdf" - look at this next.
                       The general API for the HPDF backend.
                     .
                     Additional documentation can be found in the
                     README file distributed with the source tarball
extra-source-files: test/test.hs, test/Makefile, test/logo.jpg

Source-repository head
  type:     git
  location: http://github.com/alpheccar/diagrams-pdf


library
  Exposed-modules:     Diagrams.Backend.Pdf
                       Diagrams.Backend.Pdf.CmdLine     
  other-modules:       Diagrams.Backend.Pdf.Specific
  build-depends:       base >= 4.6 && < 4.8,
                       mtl >= 2.1 && < 2.2 ,
                       monoid-extras >= 0.3 && < 0.4,
                       semigroups >= 0.9.2 && < 0.10,
                       HPDF >= 1.4.5 && < 1.5,
                       vector-space >= 0.8.6 && < 0.9,
                       diagrams-lib >= 0.7 && < 0.8,
                       diagrams-core >= 0.7 && < 0.8,
                       filepath >= 1.3 && < 1.4,
                       split >= 0.2.2 && < 0.3,
                       cmdargs >= 0.10 && < 0.11,
                       colour >= 2.3.3 && < 2.4,
                       lens >= 3.9 && < 3.10
  Hs-source-dirs:      src

  Ghc-options:         -Wall -fno-warn-unused-binds

  Default-language:  Haskell2010