forked from awslabs/aws-config-rdklib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config
37 lines (30 loc) · 748 Bytes
/
Config
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
# -*-perl-*-
package.RDKLib = {
interfaces = (1.0);
deploy = {
generic = true;
};
build-environment = {
chroot = basic;
network-access = blocked;
};
# Use NoOpBuild. See https://w.amazon.com/index.php/BrazilBuildSystem/NoOpBuild
build-system = no-op;
build-tools = {
1.0 = {
NoOpBuild = 1.0;
};
};
# Use runtime-dependencies for when you want to bring in additional
# packages when deploying.
# Use dependencies instead if you intend for these dependencies to
# be exported to other packages that build against you.
dependencies = {
1.0 = {
};
};
runtime-dependencies = {
1.0 = {
};
};
};