name: Rasterific version: 0.4 x-revision: 1 synopsis: A pure haskell drawing engine. -- A longer description of the package. description: <> . Rasterific is a vector drawing library (a rasterizer) implemented in pure haskell license: BSD3 license-file: LICENSE author: Vincent Berthoux maintainer: twinside@gmail.com -- A copyright notice. -- copyright: category: Graphics build-type: Simple -- extra-source-files: cabal-version: >= 1.10 extra-source-files: changelog, docimages/*.png extra-doc-files: docimages/*.png Source-Repository head Type: git Location: git://github.com/Twinside/Rasterific.git Source-Repository this Type: git Location: git://github.com/Twinside/Rasterific.git Tag: v0.4 flag embed_linear description: Embed a reduced version of Linear avoiding a (huge) dep Default: True library hs-source-dirs: src exposed-modules: Graphics.Rasterific , Graphics.Rasterific.Outline , Graphics.Rasterific.Texture , Graphics.Rasterific.Linear , Graphics.Rasterific.Transformations , Graphics.Rasterific.Immediate , Graphics.Rasterific.PathWalker other-modules: Graphics.Rasterific.Line , Graphics.Rasterific.Command , Graphics.Rasterific.CubicBezier , Graphics.Rasterific.QuadraticBezier , Graphics.Rasterific.Operators , Graphics.Rasterific.Rasterize , Graphics.Rasterific.StrokeInternal , Graphics.Rasterific.Types , Graphics.Rasterific.Compositor , Graphics.Rasterific.Shading , Graphics.Rasterific.PlaneBoundable , Graphics.Rasterific.QuadraticFormula ghc-options: -O3 -Wall -- -ddump-simpl -ddump-to-file -dsuppress-module-prefixes -dsuppress-uniques ghc-prof-options: -Wall -prof -auto-all default-language: Haskell2010 build-depends: base >= 4.6 && < 4.8 , free >= 4.7 , JuicyPixels >= 3.2 , FontyFruity >= 0.4 && < 0.5 , vector >= 0.9 , mtl >= 1.9 , dlist >= 0.6 , primitive >= 0.5 , vector-algorithms >= 0.3 if !flag(embed_linear) build-depends: linear >= 1.3 cpp-options: -DEXTERNAL_LINEAR Test-Suite test type: exitcode-stdio-1.0 default-language: Haskell2010 Main-Is: rastertest.hs ghc-options: -Wall -O2 ghc-prof-options: -rtsopts -Wall -prof -auto-all Hs-Source-Dirs: exec-src Build-Depends: base >= 4.6 , Rasterific , JuicyPixels , directory >= 1.2 , filepath , vector , FontyFruity , binary , QuickCheck , deepseq , criterion , statistics --, groom