blob: 3b1f5aaf92d5e872002cd5be6653611626f0f37c (
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
|
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
SRC_URI = "git://gerrit.automotivelinux.org/gerrit/src/drm-lease-manager;protocol=https;branch=${AGL_BRANCH} \
file://drm-lease-manager.service \
file://run-ptest \
"
PV = "0.1+git${SRCPV}"
SRCREV = "f991de200799118355fd75237a740321bda7aaa7"
S = "${WORKDIR}/git"
inherit meson
inherit systemd
inherit ptest
DEPENDS = "libdrm libcheck fff"
do_install_append() {
install -d ${D}/${systemd_unitdir}/system
install -m 0644 ${WORKDIR}/drm-lease-manager.service ${D}/${systemd_unitdir}/system
rm -rf ${D}/${localstatedir}
}
SYSTEMD_SERVICE_${PN} = "drm-lease-manager.service"
EXTRA_OEMESON += "${@bb.utils.contains('PTEST_ENABLED', '1', '-Denable-tests=true', '', d)}"
RDEPENDS_${PN}-ptest = "libcheck"
do_install_ptest() {
install ${B}/libdlmclient/test/libdlmclient-test ${D}${PTEST_PATH}
install ${B}/drm-lease-manager/test/lease-server-test ${D}${PTEST_PATH}
install ${B}/drm-lease-manager/test/lease-manager-test ${D}${PTEST_PATH}
}
|