packages feed

HipmunkPlayground-5.2.0: HipmunkPlayground.cabal

Cabal-Version: >= 1.2
Build-Type:    Simple
Tested-With:   GHC
Category:      Physics, Game
Name:          HipmunkPlayground
Version:       5.2.0
Stability:     provisional
License:       OtherLicense
License-File:  LICENSE
Copyright:     (c) 2008 Felipe A. Lessa
Author:        Felipe A. Lessa <felipe.lessa@gmail.com>
Maintainer:    Felipe A. Lessa <felipe.lessa@gmail.com>
Synopsis:      A playground for testing Hipmunk.
Description:
      This is a simple OpenGL program that allows you to see
      some of Hipmunk's functions in action.
      .
      New in version 5.2.0:
      .
      * Updated to Hipmunk 5.2.0 (which uses StateVar).
      .
      * Updated to OpenGL 2.4.0.1.
      .
      * Updated to GLFW 0.4.2.
      .
      Licensed under the MIT license (like Hipmunk itself).
Extra-Source-Files:
      NEWS

Flag small_base
  Description: Choose the new smaller, split-up base package.

Executable HipmunkPlayground
  if flag(small_base)
    Build-Depends: base >= 3 && < 5, containers >= 0.1 && < 0.4,
                   Hipmunk >= 5.2 && < 5.3, GLFW >= 0.4 && < 0.5,
                   OpenGL >= 2.4 && < 2.5, StateVar >= 1.0 && < 1.1
  else
    Build-Depends: base >= 2 && < 3,
                   Hipmunk >= 5.2 && < 5.3, GLFW >= 0.4 && < 0.5,
                   OpenGL >= 2.4 && < 2.5, StateVar >= 1.0 && < 1.1
  GHC-Options:   -Wall
  Main-is: Playground.hs