packages feed

IFS-0.1.1: IFS.cabal

Name:                IFS
Version:             0.1.1
cabal-version: >=1.2
License:             BSD3
License-file:        LICENSE
Author:              alpheccar
Copyright: Copyright (c) 2007, alpha
category: Graphics
synopsis: Iterated Function System generation for Haskell
description: Library to describe IFS and generate PPM pictures from the descriptions 
maintainer: misc@NOSPAMalpheccar.org
homepage: http://www.alpheccar.org


flag splitBase
  description: Choose the new smaller, split-up base package.

library
  if flag(splitBase)
    build-depends: base >= 3, containers, random >= 1.0, bytestring >= 0.9, array >= 0.1
  else
    build-depends: base < 3
  exposed-Modules: 
     Graphics.IFS,
     Graphics.IFS.Examples,
     Graphics.IFS.Geometry,
     Graphics.IFS.Ppm
  hs-source-dirs:      src/
  ghc-options:         -O -fglasgow-exts

Executable          IFS
  hs-source-dirs:      src/
  Main-is:             main.hs
  ghc-options:         -O -fglasgow-exts