packages feed

free-game-0.3.2.2: free-game.cabal

name:                free-game
version:             0.3.2.2
synopsis:            Create graphical applications for free.
description:         Cross-platform GUI library based on free monads
homepage:            https://github.com/fumieval/free-game
bug-reports:         https://github.com/fumieval/free-game/issues
license:             BSD3
license-file:        LICENSE
author:              Fumiaki Kinoshita
maintainer:          Fumiaki Kinoshita <fumiexcel@gmail.com>
copyright:           Copyright (C) 2012-2013 Fumiaki Kinoshita
category:            Graphics
build-type:          Simple
stability:           experimental
cabal-version:       >=1.8
extra-source-files:
  examples/test.hs
  examples/logo.png
  examples/font.hs
  examples/bitmap.hs
  examples/VL-PGothic-Regular.ttf

source-repository head
  type: git
  location: https://github.com/fumieval/free-game.git

library
  exposed-modules:     Graphics.FreeGame
    , Graphics.FreeGame.Simple
    , Graphics.FreeGame.Util
    , Graphics.FreeGame.Input
    , Graphics.FreeGame.Base
    , Graphics.FreeGame.Types
    , Graphics.FreeGame.Backends.GLFW
    , Graphics.FreeGame.Data.Color
    , Graphics.FreeGame.Data.Bitmap
    , Graphics.FreeGame.Data.Font
    , Graphics.FreeGame.Internal.Resource
  ghc-options: -Wall -fexcess-precision -O2
  build-depends: base == 4.*
    , mtl >= 2.1
    , transformers >= 0.3
    , containers >= 0.4
    , free == 3.*
    , random == 1.*
    , repa >= 3.2
    , JuicyPixels-repa >= 0.4
    , vect >= 0.4.6
    , array >= 0.3
    , filepath >= 1.3
    , freetype2 >= 0.1
    , hashable >= 1.0
    , OpenGL >= 2.5
    , OpenGLRaw >= 1.1
    , GLFW-b >= 0.1
    , StateVar
    , void >= 0.1