mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
d6ae8d2004
Where recipes use S = ${WORKDIR}, change them to set UNPACKDIR to
a subdir of WORKDIR and make S point at this instead.
I've chosen not to force S into any standard UNPACKDIR we may pick in
future just so the S = UNPACKDIR case is clearly visible by the
directory naming under WORKDIR as that should aid usability.
(From OE-Core rev: d9328e3b0b062f0621de3d114584b44f384a1c02)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
801 B
BlitzBasic
30 lines
801 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"
|
|
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
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}/sources"
|
|
UNPACKDIR = "${S}"
|
|
|
|
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}
|
|
}
|