mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 00:32:12 +02:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
698 B
BlitzBasic
27 lines
698 B
BlitzBasic
SUMMARY = "Custom Matchbox session files"
|
|
DESCRIPTION = "Very simple session manager for matchbox tools"
|
|
HOMEPAGE = "http://www.matchbox-project.org/"
|
|
BUGTRACKER = "http://bugzilla.yoctoproject.org/"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://matchbox-session;endline=20;md5=180f1c169a15d059a56c30094f6fb5ea"
|
|
|
|
SECTION = "x11"
|
|
RCONFLICTS:${PN} = "matchbox-common"
|
|
|
|
SRC_URI = "file://matchbox-session"
|
|
S = "${WORKDIR}"
|
|
|
|
PR = "r4"
|
|
|
|
inherit update-alternatives
|
|
|
|
ALTERNATIVE:${PN} = "x-session-manager"
|
|
ALTERNATIVE_TARGET[x-session-manager] = "${bindir}/matchbox-session"
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
|
|
do_install() {
|
|
install -d ${D}/${bindir}
|
|
install -m 0755 ${S}/matchbox-session ${D}/${bindir}
|
|
}
|