summaryrefslogtreecommitdiffstats
path: root/recipes-platform/packagegroups/packagegroup-agl-demo-platform-qa.bb
blob: 739f859b9cb23f4ae9adb2cd51a89400cb0448e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SUMMARY = "The software for DEMO platform of AGL IVI profile"
DESCRIPTION = "A set of packages belong to AGL Demo Platform includes utilities for testing distribution as Quality Assurance"

LICENSE = "MIT"

inherit packagegroup

PACKAGES = "\
    packagegroup-agl-demo-platform-qa \
    "

ALLOW_EMPTY_${PN} = "1"

RDEPENDS_${PN} += "\
    "
class="nv">SYSTEMD_SERVICE:${PN} = "run-agl-postinsts.service" SYSTEMD_SERVICE_AFTER ?= "dbus.service cynagora.service" SYSTEMD_SERVICE_BEFORE ?= "systemd-user-sessions.service" do_configure() { : } do_compile () { : } do_install() { install -d ${D}${sbindir} install -m 0755 ${WORKDIR}/run-agl-postinsts ${D}${sbindir}/ install -d ${D}${systemd_unitdir}/system/ install -m 0644 ${WORKDIR}/run-agl-postinsts.service ${D}${systemd_unitdir}/system/ sed -i -e 's:#SYSCONFDIR#:${sysconfdir}:g' \ -e 's:#SBINDIR#:${sbindir}:g' \ -e 's:#BASE_BINDIR#:${base_bindir}:g' \ -e 's:#LOCALSTATEDIR#:${localstatedir}:g' \ ${D}${sbindir}/run-agl-postinsts \ ${D}${systemd_unitdir}/system/run-agl-postinsts.service sed -i -e 's:#SYSTEMD_SERVICE_AFTER#:${SYSTEMD_SERVICE_AFTER}:g' \ -e 's:#SYSTEMD_SERVICE_BEFORE#:${SYSTEMD_SERVICE_BEFORE}:g' \ ${D}${systemd_unitdir}/system/run-agl-postinsts.service }