packages feed

wxFruit-0.1.2.1: wxFruit.cabal

name:           wxFruit
version:        0.1.2.1
Cabal-Version:  >= 1.2
License:        BSD3
License-file:   LICENSE
Author:         Antony Courtney, Bart Robinson, Paul Hudak
homepage:       http://www.haskell.org/haskellwiki/WxFruit
category:       Reactivity, FRP, GUI
synopsis:       An implementation of Fruit using wxHaskell.
description:
  This is an updated version of the original wxFruit.
  .
  wxFruit isn't maintained by original authors, and Haskell.org. There 
  are a few forked versions of wxFruit now. One extension is shelarcy's 
  YaPan 
  (<http://sourceforge.net/project/showfiles.php?group_id=168626&package_id=199138>). 
  It added Menu and OpenGL support. And another one is Remi Turk's Juicy 
  Fruit 
  (<http://www.cs.uu.nl/wiki/pub/Afp0607/DomainSpecificLanguages/fruit.pdf>).

build-type: Simple
Flag splitBase
    Description: Choose the new smaller, split-up base package.

Library
  if flag(splitBase)
    build-depends:
      base     >= 3     && < 5,
      old-time >= 1     && < 1.0.1, 
      wx       >= 0.11  && < 0.13, 
      wxcore   >= 0.11  && < 0.13, 
      Yampa    >= 0.9.2 && < 0.9.3
  else
    build-depends:
      base     < 3,
      wx       >= 0.11  && < 0.13, 
      wxcore   >= 0.11  && < 0.13, 
      Yampa    >= 0.9.2 && < 0.9.3
  Exposed-modules: WXFruit
  Extensions: Arrows

Executable paddle
  build-depends:
    base     < 5,
    wx       >= 0.11  && < 0.13, 
    wxcore   >= 0.11  && < 0.13, 
    Yampa    >= 0.9.2 && < 0.9.3
  Main-is: paddle.hs
  Extensions: Arrows