name: helm
version: 0.5.0
synopsis: A functionally reactive game engine.
description: A functionally reactive game engine, with headgear to protect you
             from the headache of game development provided.
homepage: http://github.com/z0w0/helm
bug-reports: http://github.com/z0w0/helm/issues
license: MIT
license-file: LICENSE
tested-with: GHC == 7.6.3
extra-source-files: LICENSE, README.md
author: Zack Corr
maintainer: Zack Corr <zack@z0w0.me>
copyright: (c) 2013, Zack Corr
category: Game Engine, FRP
build-type: Simple
cabal-version: >=1.10

source-repository head
  type: git
  location: git://github.com/z0w0/helm.git

library
  hs-source-dirs: src
  default-language: Haskell2010
  default-extensions: RecordWildCards, NamedFieldPuns
  ghc-options: -threaded -Wall -fno-warn-unused-do-bind -O2

  exposed-modules:
    FRP.Helm
    FRP.Helm.Automaton
    FRP.Helm.Color
    FRP.Helm.Graphics
    FRP.Helm.Animation
    FRP.Helm.Joystick
    FRP.Helm.Keyboard
    FRP.Helm.Mouse
    FRP.Helm.Text
    FRP.Helm.Time
    FRP.Helm.Utilities
    FRP.Helm.Window
    FRP.Helm.Transition
    
  build-depends:
    base >= 4 && < 5,
    cairo >= 0.12 && < 1,
    pango >= 0.12 && < 1,
    containers >= 0.5 && < 1,
    elerea >= 2.7 && < 3,
    filepath >= 1.3 && < 2,
    SDL >= 0.6 && < 1,
    random >= 1.0.1.1 && < 1.2,
    mtl >= 2.1 && < 2.2

test-suite helm-tests
  type: exitcode-stdio-1.0
  x-uses-tf: true
  ghc-options: -threaded -Wall -rtsopts -O
  hs-source-dirs: tests, src
  default-language: Haskell2010
  main-is: Main.hs
  
  build-depends:
    base >= 4 && < 5,
    HUnit >= 1.2 && < 2,
    test-framework >= 0.8 && < 1,
    test-framework-hunit >= 0.3 && < 1,
    test-framework-quickcheck2 >= 0.3 && < 1,
    elerea >= 2.7 && < 3,
    SDL >= 0.6 && < 1