blob: 41f75d4d5f30f843dda852b458ea798d2db7826c (
plain)
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
|
SUMMARY = "AGL Container Manager"
DESCRIPTION = "AGL Container Manager for AGL Instrument Cluster."
AUTHOR = "Naoto Yamaguchi/ AGL Instrument Cluster Expert Group"
HOMEPAGE = "https://github.com/AGLExport/container-manager"
BUGTRACKER = "https://github.com/AGLExport/container-manager/issues"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=89aea4e17d99a7cacdbeed46a0096b10"
DEPENDS = "systemd libmnl cjson lxc util-linux"
PV = "0.1.0+rev${SRCPV}"
SRC_URI = " \
git://github.com/AGLExport/container-manager.git;branch=staging2;protocol=https \
file://container-manager.service \
file://container-manager.json \
"
SRCREV = "e516cfeca7859a74a47155ab77d4b1610cae6617"
S = "${WORKDIR}/git"
inherit autotools pkgconfig systemd features_check
REQUIRED_DISTRO_FEATURES = "systemd"
SYSTEMD_PACKAGES = "${PN}"
SYSTEMD_SERVICE:${PN} = "container-manager.service"
SYSTEMD_AUTO_ENABLE:${PN} = "enable"
do_install:append() {
install -d ${D}/opt/container/conf/
install -d ${D}/opt/container/guests/
install -d ${D}${systemd_system_unitdir}
install -m 0644 ${WORKDIR}/container-manager.service ${D}${systemd_system_unitdir}/
install -d ${D}${sysconfdir}
install -m 0644 ${WORKDIR}/container-manager.json ${D}${sysconfdir}/
}
FILES:${PN} += " \
${systemd_system_unitdir}/* \
${sysconfdir}/* \
/opt/container/conf \
/opt/container/guests \
"
|