-
Notifications
You must be signed in to change notification settings - Fork 6
/
yampa2048.cabal
40 lines (37 loc) · 1.49 KB
/
yampa2048.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: yampa2048
version: 0.1.0.0
synopsis: 2048 game clone using Yampa/Gloss
description:
A simple game clone of a popular 2048 game using Yampa FRP
library and Gloss for graphics.
.
Use the arrow keys to slide the rows or columns of the board and try to
survive for as long as possible. When there is no more move possible you will
be presented with a game over message for 5 seconds and the game will be
restarted after that.
license: MIT
license-file: LICENSE
author: Konstantin Saveljev <[email protected]>
maintainer: Konstantin Saveljev <[email protected]>
copyright: (C) 2015 Konstantin Saveljev, Josh Kirklin, Maia Werbos
category: Game
build-type: Simple
extra-source-files: README.md
cabal-version: >= 1.18
homepage: https://github.com/ksaveljev/yampa-2048
bug-reports: https://github.com/ksaveljev/yampa-2048/issues
executable yampa2048
main-is: Main.hs
other-modules: Game
, GameLogic
, GameModel
, Rendering
, Types
, Graphics.Gloss.Interface.FRP.Yampa
build-depends: base >=4.7 && <4.8
, random
, gloss == 1.9.*
, Yampa == 0.9.*
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2