46 lines
1.5 KiB
Text
46 lines
1.5 KiB
Text
name: affection
|
|
|
|
-- The package version. See the Haskell package versioning policy (PVP)
|
|
-- for standards guiding when and how versions should be incremented.
|
|
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
|
|
-- PVP summary: +-+------- breaking API changes
|
|
-- | | +----- non-breaking API additions
|
|
-- | | | +--- code changes with no API change
|
|
version: 0.0.0.0
|
|
synopsis: A simple Game Engine using SDL
|
|
-- description:
|
|
homepage: https://github.com/nek0/affection#readme
|
|
license: LGPL-3
|
|
license-file: LICENSE
|
|
author: nek0
|
|
maintainer: nek0@chelnok.de
|
|
category: Game
|
|
build-type: Simple
|
|
|
|
-- Extra files to be distributed with the package, such as examples or a
|
|
-- README.
|
|
-- extra-source-files:
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
library
|
|
exposed-modules: Affection
|
|
extensions: OverloadedStrings
|
|
, GADTs
|
|
-- Modules included in this library but not exported.
|
|
-- other-modules:
|
|
|
|
-- LANGUAGE extensions used by modules in this package.
|
|
-- other-extensions:
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
-- Other library packages from which modules are imported.
|
|
build-depends: base >=4.8 && <4.9
|
|
, sdl2
|
|
, text
|
|
-- , sdl2-image
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/nek0/affection
|