forked from Yonaba/Jumper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjumper-1.8.0.rockspec
37 lines (37 loc) · 1.41 KB
/
jumper-1.8.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 = "jumper"
version = "1.8.0"
source = {
url = "https://github.com/Yonaba/Jumper/archive/jumper-1.8.0.tar.gz",
dir = "Jumper-jumper-1.8.0"
}
description = {
summary = "Fast and easy-to-use pathfinding library for grid-based games",
detailed = [[
Jumper is a pathfinding library designed for grid-based games.
It aims to be fast and lightweight. It also features wide range of search algorithms,
a clean public interface with chaining features which makes it very friendly and easy to use.
]],
homepage = "http://github.com/Yonaba/Jumper",
license = "MIT <http://www.opensource.org/licenses/mit-license.php>",
maintainer = "Roland Yonaba <[email protected]>",
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["jumper.grid"] = "jumper/grid.lua",
["jumper.pathfinder"] = "jumper/pathfinder.lua",
["jumper.core.bheap"] = "jumper/core/bheap.lua",
["jumper.core.heuristics"] = "jumper/core/heuristics.lua",
["jumper.core.node"] = "jumper/core/node.lua",
["jumper.core.path"] = "jumper/core/path.lua",
["jumper.search.astar"] = "jumper/search/astar.lua",
["jumper.search.jps"] = "jumper/search/jps.lua",
["jumper.search.dijkstra"] = "jumper/search/dijkstra.lua",
["jumper.search.bfs"] = "jumper/search/bfs.lua",
["jumper.search.dfs"] = "jumper/search/dfs.lua",
},
copy_directories = {"docs"}
}