-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathluaprofiler-2.0.2-2.rockspec
More file actions
executable file
·31 lines (31 loc) · 1018 Bytes
/
luaprofiler-2.0.2-2.rockspec
File metadata and controls
executable file
·31 lines (31 loc) · 1018 Bytes
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
package="LuaProfiler"
version="2.0.2-1"
source = {
url = "http://luaprofiler.luaforge.net/luaprofiler-2.0.2.tar.gz",
}
description = {
summary = "Profiling for Lua scripts",
detailed = [[
LuaProfiler is a time profiler designed to help finding bottlenecks on your Lua program.
If you use LuaProfiler into your program, it will generate a log of all your function calls
and their respective running times. You can use this log to generate a summary of the functions
your program uses, along with how long it stayed in each of them, or you can import the log into
a spreadsheet for further analysis.
]],
homepage = "http://www.keplerproject.org/luaprofiler/",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "module",
modules = {
profiler = {
sources = { "src/clocks.c", "src/core_profiler.c", "src/function_meter.c", "src/stack.c", "src/lua50_profiler.c" }
}
},
install = {
bin = { summary = "src/analyzer/summary.lua" }
}
}