update-rc.d_0.8.bb 730 B

12345678910111213141516171819202122232425
  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 = "GPL-2.0-or-later"
  6. LIC_FILES_CHKSUM = "file://update-rc.d;beginline=5;endline=15;md5=d40a07c27f535425934bb5001f2037d9"
  7. SRC_URI = "git://git.yoctoproject.org/update-rc.d;branch=master;protocol=https"
  8. SRCREV = "b8f950105010270a768aa12245d6abf166346015"
  9. PV .= "+git"
  10. UPSTREAM_CHECK_COMMITS = "1"
  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"