-- Initial Rasterific.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: Rasterific version: 0.3 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.3 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 other-modules: Graphics.Rasterific.Line , 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: -O2 -Wall ghc-prof-options: -Wall -prof -auto-all default-language: Haskell2010 build-depends: base >= 4.6 && < 4.9 , JuicyPixels >= 3.1.5.2 && < 3.2 , FontyFruity >= 0.3 && < 0.4 , vector >= 0.9 , vector-algorithms >= 0.3 , free >= 4.7 , mtl >= 1.9 , dlist >= 0.6 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 >= 2.7 , deepseq , criterion >= 0.8 && < 0.9 , statistics >= 0.10 && < 0.11