mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +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>
28 lines
723 B
BlitzBasic
28 lines
723 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 = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://matchbox-session;endline=20;md5=180f1c169a15d059a56c30094f6fb5ea"
|
|
|
|
SECTION = "x11"
|
|
RCONFLICTS:${PN} = "matchbox-common"
|
|
|
|
SRC_URI = "file://matchbox-session"
|
|
|
|
S = "${WORKDIR}/sources"
|
|
UNPACKDIR = "${S}"
|
|
|
|
|
|
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}
|
|
}
|