forked from tarantool/rocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cbench-scm-1.rockspec
38 lines (33 loc) · 1.07 KB
/
cbench-scm-1.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
38
package = 'cbench'
version = 'scm-1'
source = {
url = 'git://github.com/tarantool/cbench.git';
branch = 'master';
}
description = {
summary = "Simple tool to benchmark Tarantool internal API";
detailed = [[
Tarantool C Bench is a simple tool to benchmark Tarantool internal API.
Tarantool (http://tarantool.org) is an efficient in-memory NoSQL database
and a Lua application server, blended.
The tool is used internally by Tarantool team to check for performance
regressions during development cycle. All workloads are written in C++.
Lua (FFI) is only used to load & run workloads and display results (does
not affect performance).
]];
homepage = 'https://github.com/tarantool/cbench.git';
license = 'BSD';
maintainer = "Roman Tsisyk <[email protected]>";
}
dependencies = {
'lua >= 5.1';
}
build = {
type = 'cmake';
variables = {
CMAKE_BUILD_TYPE="RelWithDebInfo";
TARANTOOL_INSTALL_LIBDIR="$(LIBDIR)";
TARANTOOL_INSTALL_LUADIR="$(LUADIR)";
};
}
-- vim: syntax=lua ts=4 sts=4 sw=4 et