summaryrefslogtreecommitdiffstats
path: root/meta-oem-extra-libs/conf/layer.conf
blob: 8eb09a28117c0e1d5ba71ea7a25e01eb46c50b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
# We have a conf and classes directory, add to BBPATH
BBPATH .= ":${LAYERDIR}"

# We have recipes-* directories, add to BBFILES
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
	${LAYERDIR}/recipes-*/*/*.bbappend"

BBFILE_COLLECTIONS += "oem-extra-libs"
BBFILE_PATTERN_oem-extra-libs = "^${LAYERDIR}/"
BBFILE_PRIORITY_oem-extra-libs = "7"
@ CES2017" DESCRIPTION = "Setting files of mapviewer for the AGL Demonstrator @ CES2017" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" SECTION = "apps" inherit systemd SRC_URI = " \ file://switch_off_mapviewer-demo.sh \ file://switch_on_mapviewer-demo.sh \ file://weston-mapviewer-demo.ini \ file://weston-mapviewer-demo.service \ " do_install() { # Map viewer demo install -d ${D}/usr/AGL/${PN} install -m 0755 ${WORKDIR}/switch_off_${PN}.sh ${D}/usr/AGL/${PN} install -m 0755 ${WORKDIR}/switch_on_${PN}.sh ${D}/usr/AGL/${PN} install -d ${D}${sysconfdir}/xdg/weston install -m 0644 ${WORKDIR}/weston-${PN}.ini ${D}${sysconfdir}/xdg/weston/weston-${PN}.ini install -d ${D}${systemd_system_unitdir} install -m 0644 ${WORKDIR}/weston-mapviewer-demo.service ${D}${systemd_system_unitdir} sed -i "s:/home/root:${ROOT_HOME}:" ${D}${systemd_system_unitdir}/weston-mapviewer-demo.service } ## DO NOT ENABLE 'weston-mapviewer-demo.service' BY DEFAULT ## ## The 'weston-mapviewer-demo.service' is exclusive of default 'weston.ini', ## it should be enabled/disabled by 'switch_on_mapviewer-demo.sh'/'switch_off_mapviewer-demo.sh'. ## #SYSTEMD_SERVICE_${PN} = "weston-mapviewer-demo.service" FILES_${PN} += " \ ${systemd_system_unitdir} \ /usr/AGL/${PN}/ \ ${sysconfdir}/xdg/weston/${PN} \ "