cpio_2.12.bb 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. SUMMARY = "GNU cpio is a program to manage archives of files"
  2. DESCRIPTION = "GNU cpio is a tool for creating and extracting archives, or copying files from one place to \
  3. another. It handles a number of cpio formats as well as reading and writing tar files."
  4. HOMEPAGE = "http://www.gnu.org/software/cpio/"
  5. SECTION = "base"
  6. LICENSE = "GPLv3"
  7. LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
  8. SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \
  9. file://0001-Unset-need_charset_alias-when-building-for-musl.patch \
  10. file://0001-Fix-CVE-2015-1197.patch \
  11. file://0001-CVE-2016-2037-1-byte-out-of-bounds-write.patch \
  12. file://0001-Fix-segfault-with-append.patch \
  13. "
  14. SRC_URI[md5sum] = "fc207561a86b63862eea4b8300313e86"
  15. SRC_URI[sha256sum] = "08a35e92deb3c85d269a0059a27d4140a9667a6369459299d08c17f713a92e73"
  16. inherit autotools gettext texinfo
  17. EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}"
  18. do_install () {
  19. autotools_do_install
  20. if [ "${base_bindir}" != "${bindir}" ]; then
  21. install -d ${D}${base_bindir}/
  22. mv "${D}${bindir}/cpio" "${D}${base_bindir}/cpio"
  23. rmdir ${D}${bindir}/
  24. fi
  25. }
  26. PACKAGES =+ "${PN}-rmt"
  27. FILES_${PN}-rmt = "${base_sbindir}/rmt*"
  28. inherit update-alternatives
  29. ALTERNATIVE_PRIORITY = "100"
  30. ALTERNATIVE_${PN} = "cpio"
  31. ALTERNATIVE_${PN}-rmt = "rmt"
  32. ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio"
  33. ALTERNATIVE_PRIORITY[rmt] = "50"
  34. ALTERNATIVE_LINK_NAME[rmt] = "${base_sbindir}/rmt"
  35. BBCLASSEXTEND = "native"