forked from ksaveljev/yampa-2048
-
Notifications
You must be signed in to change notification settings - Fork 4
/
eta-2048.cabal
46 lines (43 loc) · 1.72 KB
/
eta-2048.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
41
42
43
44
45
46
name: eta2048
version: 0.1.0.0
synopsis: 2048 game clone using Yampa & JavaFX
description:
A simple game clone of a popular 2048 game using Yampa FRP
library and JavaFX 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: Rahul Muttineni <[email protected]>
Konstantin Saveljev <[email protected]>
maintainer: Rahul Muttineni <[email protected]>
Konstantin Saveljev <[email protected]>
copyright: (C) 2015-2016 Rahul Muttinei, Konstantin Saveljev, Josh Kirklin, Maia Werbos
category: Game
build-type: Simple
extra-source-files: README.md
cabal-version: >= 1.18
homepage: https://github.com/rahulmutt/eta-2048
bug-reports: https://github.com/rahulmutt/eta-2048/issues
executable eta2048
main-is: Main.hs
other-modules: Game
, GameLogic
, GameModel
, Rendering
, Types
, JavaFX
, JavaFX.FRP
, JavaFX.Main
, JavaFX.Picture
, JavaFX.Rendering
, JavaFX.Types
build-depends: base >=4.7 && <4.9
, random
, Yampa == 0.10.*
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2