forked from tarantool/rocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmrasender-scm-1.rockspec
43 lines (37 loc) · 932 Bytes
/
mrasender-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
package = 'mrasender'
version = 'scm-1'
source = {
url = 'git://github.com/mailru/mrasender.git';
branch = 'master';
}
description = {
summary = "Send message to Mail.Ru Agent from Tarantool";
detailed = [[
Send message to Mail.Ru Agent from Tarantool
]];
homepage = 'https://github.com/mailru/mrasender.git';
license = 'BSD';
maintainer = "Maxim Glekov <[email protected]>";
}
dependencies = {
'lua >= 5.1';
}
external_dependencies = {
TARANTOOL = {
header = 'tarantool/module.h'
};
}
build = {
type = 'builtin',
modules = {
['mrasender'] = 'mrasender/init.lua';
['mrasender.functions'] = 'mrasender/functions.lua';
['mrasender.cfunctions'] = {
incdirs = {
'$(TARANTOOL_INCDIR)';
};
sources = 'mrasender/cfunctions.c';
}
}
}
-- vim: syntax=lua ts=4 sts=4 sw=4 et