mini-x-session_0.1.bb 773 B

123456789101112131415161718192021222324252627
  1. SUMMARY = "Very simple session manager for X"
  2. DESCRIPTION = "Simple session manager for X, that provides just the right boilerplate to create a session and launch the browser "
  3. HOMEPAGE = "http://www.yoctoproject.org"
  4. BUGTRACKER = "http://bugzilla.pokylinux.org"
  5. LICENSE = "GPL-2.0-only"
  6. LIC_FILES_CHKSUM = "file://mini-x-session;endline=5;md5=b6430bffbcf05f9760e72938826b7487"
  7. SECTION = "x11"
  8. RCONFLICTS:${PN} = "matchbox-common"
  9. SRC_URI = "file://mini-x-session"
  10. S = "${WORKDIR}"
  11. RDEPENDS:${PN} = "sudo"
  12. inherit update-alternatives
  13. ALTERNATIVE:${PN} = "x-session-manager"
  14. ALTERNATIVE_TARGET[x-session-manager] = "${bindir}/mini-x-session"
  15. ALTERNATIVE_PRIORITY = "50"
  16. do_install() {
  17. install -d ${D}/${bindir}
  18. install -m 0755 ${S}/mini-x-session ${D}/${bindir}
  19. }