mirror of
https://git.yoctoproject.org/poky
synced 2026-09-20 12:49:33 +02:00
Fixes: [YOCTO #13471] (From OE-Core rev: 4041267ed54a005f904af7a326b3465e40602ec2) Signed-off-by: Ida Delphine <idadelm@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 24eac1fef8892484cc3dede1853d180e0c235120) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
776 B
BlitzBasic
29 lines
776 B
BlitzBasic
SUMMARY = "Very simple session manager for X"
|
|
DESCRIPTION = "Simple session manager for X, that provides just the right boilerplate to create a session and launch the browser "
|
|
HOMEPAGE = "http://www.yoctoproject.org"
|
|
BUGTRACKER = "http://bugzilla.pokylinux.org"
|
|
|
|
PR = "r4"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://mini-x-session;endline=5;md5=b6430bffbcf05f9760e72938826b7487"
|
|
|
|
SECTION = "x11"
|
|
RCONFLICTS_${PN} = "matchbox-common"
|
|
|
|
SRC_URI = "file://mini-x-session"
|
|
S = "${WORKDIR}"
|
|
|
|
RDEPENDS_${PN} = "sudo"
|
|
|
|
inherit update-alternatives
|
|
|
|
ALTERNATIVE_${PN} = "x-session-manager"
|
|
ALTERNATIVE_TARGET[x-session-manager] = "${bindir}/mini-x-session"
|
|
ALTERNATIVE_PRIORITY = "50"
|
|
|
|
do_install() {
|
|
install -d ${D}/${bindir}
|
|
install -m 0755 ${S}/mini-x-session ${D}/${bindir}
|
|
}
|