forked from tarantool/rocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodulekit-scm-1.rockspec
44 lines (38 loc) · 959 Bytes
/
modulekit-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
39
40
41
42
43
44
package = 'modulekit'
version = 'scm-1'
source = {
url = 'git://github.com/tarantool/modulekit.git';
branch = 'master';
}
description = {
summary = "A set of Tarantool module templates";
detailed = [[
A ready to use module templates. Clone and modify to create
new modules.
]];
homepage = 'https://github.com/tarantool/modulekit.git';
license = 'BSD';
maintainer = "Roman Tsisyk <[email protected]>";
}
dependencies = {
'lua >= 5.1';
}
external_dependencies = {
TARANTOOL = {
header = 'tarantool/module.h'
};
}
build = {
type = 'builtin',
modules = {
['modulekit'] = 'modulekit/init.lua';
['modulekit.functions'] = 'modulekit/functions.lua';
['modulekit.cfunctions'] = {
incdirs = {
'$(TARANTOOL_INCDIR)';
};
sources = 'modulekit/cfunctions.c';
}
}
}
-- vim: syntax=lua ts=4 sts=4 sw=4 et