-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
ldbus-scm-0.rockspec
58 lines (53 loc) · 986 Bytes
/
ldbus-scm-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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package = "ldbus"
version = "scm-0"
source = {
url = "git://github.com/daurnimator/ldbus.git";
}
description = {
summary = "A Lua library to access dbus.";
homepage = "https://github.com/daurnimator/ldbus";
license = "MIT/X11";
}
dependencies = {
"lua >= 5.1, < 5.5";
}
external_dependencies = {
DBUS = {
header = "dbus/dbus.h";
library = "dbus-1";
};
DBUS_ARCH = {
header = "dbus/dbus-arch-deps.h";
};
}
build = {
type = "builtin";
modules = {
ldbus = {
sources = {
"src/ldbus.c";
"src/error.c";
"src/bus.c";
"src/connection.c";
"src/message.c";
"src/message_iter.c";
"src/pending_call.c";
"src/timeout.c";
"src/watch.c";
"vendor/compat-5.3/c-api/compat-5.3.c";
};
libraries = {
"dbus-1";
};
incdirs = {
"$(DBUS_INCDIR)";
"$(DBUS_ARCH_INCDIR)";
"vendor/compat-5.3/c-api/";
};
libdirs = {
"$(DBUS_LIBDIR)";
};
};
["ldbus.message.variant"] = "src/message/variant.lua";
};
}