-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmalvado-1.0.0-0.rockspec
executable file
·37 lines (37 loc) · 1.17 KB
/
malvado-1.0.0-0.rockspec
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
package = "malvado"
version = "1.0.0-0"
source = {
url = "git://github.com/jepemo/malvado",
tag = "v1.0",
dir = "malvado"
}
description = {
summary = "A game programming library with 'DIV Game Studio'-style processes for Lua/Love2D",
detailed = [[
Api inspired with the 'DIV Game Studio'-style of making games. Game definition
with "independent" processes (game entities).
]],
homepage = "http://github.com/jepemo/malvado",
license = "Apache License 2.0"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["malvado"] = "malvado/init.lua",
["malvado.core"] = "malvado/core.lua",
["malvado.draw"] = "malvado/draw.lua",
["malvado.effects"] = "malvado/effects.lua",
["malvado.key"] = "malvado/key.lua",
["malvado.map"] = "malvado/map.lua",
["malvado.math"] = "malvado/math.lua",
["malvado.mouse"] = "malvado/mouse.lua",
["malvado.screen"] = "malvado/screen.lua",
["malvado.text"] = "malvado/text.lua",
["malvado.utils"] = "malvado/utils.lua",
["malvado.video"] = "malvado/video.lua",
["malvado.wm"] = "malvado/wm.lua",
}
}