sdl2-cairo-0.1.0.0: sdl2-cairo.cabal
-- Initial sdl2-cairo.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: sdl2-cairo
version: 0.1.0.0
synopsis: Binding to render with Cairo on SDL textures
and optional convenience drawing API.
description: This small library provides convenience functions to draw
on SDL2 textures with Cairo. As Cairo is complicated, it also
provides a drawing API, which is heavily inspired by Processing and
is much more user-friendly. If it does not support something,
you can always embed direct Cairo commands, so you do not have
to decide!
license: MIT
license-file: LICENSE
author: Anton Pirogov
maintainer: anton.pirogov@gmail.com
copyright: Copyright (c) 2015 Anton Pirogov
category: Graphics
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
exposed-modules: SDL.Cairo, SDL.Cairo.Canvas, SDL.Cairo.Canvas.Interactive
--other-modules:
build-depends: base >=4.8 && <=5
, sdl2 >=2.0.0
, cairo >=0.13
, linear
, mtl
, random
, time
executable sdl2-cairo-test
ghc-options: -fPIC
default-language: Haskell2010
default-extensions: OverloadedStrings
main-is: Main.hs
build-depends: base >=4 && <=5
, sdl2 >=2.0.0
, cairo >=0.13
, linear
, mtl
, random
, time
source-repository head
type: git
location: https://github.com/apirogov/sdl2-cairo.git