packages feed

sdl2-image-0.1.3.2: sdl2-image.cabal

name:                sdl2-image
version:             0.1.3.2
synopsis:            Haskell binding to sdl2-image.
description:         Haskell binding to sdl2-image.
license:             MIT
license-file:        LICENSE
author:              Cai Lei
maintainer:          cailei@live.com
category:            Graphics
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  changelog.md

source-repository head
  type:       git
  location:   https://github.com/ccll/hs-sdl2-image.git

source-repository this
  type:       git
  location:   https://github.com/ccll/hs-sdl2-image.git
  tag:        v0.1.3.2

library
  extra-libraries:
    SDL2

  pkgconfig-depends:
    sdl2 >= 2.0.1,
    SDL2_image >= 2.0.0

  build-depends:
    base >= 4.6 && < 4.9,
    sdl2 >= 1.0 && < 1.4

  hs-source-dirs:
    src

  ghc-options:
    -Wall

  default-extensions:
    CPP, EmptyDataDecls, ForeignFunctionInterface,
    MultiParamTypeClasses, FunctionalDependencies

  exposed-modules:
    Graphics.UI.SDL.Image

  other-modules:
    Graphics.UI.SDL.Utilities

  includes:
    SDL.h

  default-language:
    Haskell2010