- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
28 lines
773 B
BlitzBasic
28 lines
773 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}"
|
|
|
|
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}
|
|
}
|