update-rc.d_0.8.bb 700 B

1234567891011121314151617181920212223242526
  1. SUMMARY = "manage symlinks in /etc/rcN.d"
  2. HOMEPAGE = "http://github.com/philb/update-rc.d/"
  3. DESCRIPTION = "update-rc.d is a utility that allows the management of symlinks to the initscripts in the /etc/rcN.d directory structure."
  4. SECTION = "base"
  5. LICENSE = "GPLv2+"
  6. LIC_FILES_CHKSUM = "file://update-rc.d;beginline=5;endline=15;md5=148a48321b10eb37c1fa3ee02b940a75"
  7. SRC_URI = "git://git.yoctoproject.org/update-rc.d"
  8. SRCREV = "22e0692898c3e7ceedc8eb5ff4ec8e0b9c340b2d"
  9. UPSTREAM_CHECK_COMMITS = "1"
  10. S = "${WORKDIR}/git"
  11. inherit allarch
  12. do_compile() {
  13. }
  14. do_install() {
  15. install -d ${D}${sbindir}
  16. install -m 0755 ${S}/update-rc.d ${D}${sbindir}/update-rc.d
  17. }
  18. BBCLASSEXTEND = "native nativesdk"