packages feed

treemap-html-tools-0.2: treemap-html-tools.cabal

name:            treemap-html-tools
version:         0.2
license:         BSD3
license-file:    LICENSE
author:          Radoslav Dorcik <radoslav.dorcik@gmail.com>
maintainer:      Radoslav Dorcik <radoslav.dorcik@gmail.com>
description:     Contains various commands for TreeMap generation,
                 for example dirmap produces the foldable treemap for
                 given directory tree structure. 
synopsis:        Treemap related commands for producing foldable TreeMap HTML.
category:        Graphics
stability:       provisional
build-type:      Simple
cabal-version:   >= 1.6

Homepage:        http://rampa.sk/static/treemap-html.html
Source-Repository head
  type:     darcs
  location: http://patch-tag.com/r/dixiecko/treemap-html-tools

flag testing
  description: Enable Debugging things like QuickCheck properties, etc.
  default: False

library
  build-depends:   ghc          >= 6.10,
                   base         == 4.*,
                   split        == 0.1.*,
                   parsec       == 2.1.0.*,
                   regex-posix,          
                   treemap-html,
                   directory,
                   xml,
                   filepath,
                   containers,
                   Cabal        >= 1.5 && < 1.9
  hs-source-dirs:  src
  extensions:      CPP, PatternGuards, DeriveDataTypeable 

executable dirmap
  main-is: dirmap.hs
  hs-source-dirs:  src
  extensions:      CPP, PatternGuards, DeriveDataTypeable 

executable xml2treemap
  main-is: xml2treemap.hs
  hs-source-dirs:  src
  extensions:      CPP, PatternGuards, DeriveDataTypeable