forked from vrld/hump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hump-0.4-2.rockspec
33 lines (33 loc) · 956 Bytes
/
hump-0.4-2.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
package = "hump"
version = "0.4-2"
source = {
url = "git://github.com/vrld/hump"
}
description = {
summary = "Lightweight game development utilities",
detailed = [[Collection of independent components that implement common task needed in games:
- Gamestates that can stack on each other (e.g., for menus)
- Timers and Tweens with thread-like scripting support
- Cameras with camera movement control (locking, smooth follow, etc)
- 2D vector math
- Signals and Slots
- Prototype-based OOP helper
]],
homepage = "https://hump.readthedocs.io",
license = "MIT",
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["hump.camera"] = "camera.lua",
["hump.class"] = "class.lua",
["hump.gamestate"] = "gamestate.lua",
["hump.signal"] = "signal.lua",
["hump.timer"] = "timer.lua",
["hump.vector"] = "vector.lua",
["hump.vector-light"] = "vector-light.lua"
},
}