packages feed

gmndl-0.3: gmndl.cabal

Name:               gmndl
Version:            0.3
Synopsis:           Mandelbrot Set explorer using GTK

Description:
                    A Mandelbrot Set explorer.  Multiple render threads
                    use higher precision maths at higher zoom levels.
                    Suggested usage:
                    .
                    @gmndl +RTS -N -qa -RTS --width=640 --height=480@
                    .
                    Left-click to zoom in, right-click to zoom out.  The
                    status bar shows where you are, and the entry field
                    takes a space-separated list of fractions strictly
                    between 0 and 1, try for example:
                    .
                    @1\/2 2\/3 1\/4 3\/5@

Cabal-version:      >=1.4
License:            GPL-2
License-file:       LICENSE
Author:             Claude Heiland-Allen
Maintainer:         claudiusmaximus@goto10.org
Category:           Graphics
Build-type:         Simple

Executable gmndl
  Main-is:          gmndl.hs
  Other-modules:    MuAtom
  Build-depends:    base >= 4 && < 5,
                    array >= 0.3 && < 0.4,
                    gtk >= 0.11 && < 0.13,
                    gtkglext >= 0.11 && < 0.13,
                    hmatrix >= 0.10 && < 0.11,
                    mtl,
                    OpenGL >= 2.4 && < 2.5,
                    priority-queue >= 0.2.1 && < 0.3,
                    qd >= 0.2 && < 0.3
  GHC-options:      -O2 -Wall -threaded -fno-excess-precision -funbox-strict-fields
  GHC-prof-options: -O2 -Wall -threaded -fno-excess-precision -funbox-strict-fields -prof -auto-all -caf-all