-- Initial Rasterific.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: Rasterific version: 0.5.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-doc-files: docimages/*.png extra-source-files: changelog , docimages/*.png , exec-src/docImageGenerator.hs 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.5.1 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.Lenses , 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 default-language: Haskell2010 build-depends: base >= 4.6 && < 4.9 , free >= 4.7 , JuicyPixels >= 3.2 , FontyFruity >= 0.5 && < 0.6 , 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