xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/cpio/cpio_2.13.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "GNU cpio is a program to manage archives of files"
2DESCRIPTION = "GNU cpio is a tool for creating and extracting archives, or copying files from one place to \
3another. It handles a number of cpio formats as well as reading and writing tar files."
4HOMEPAGE = "http://www.gnu.org/software/cpio/"
5SECTION = "base"
6LICENSE = "GPL-3.0-only"
7LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
8
9SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \
10           file://0001-Unset-need_charset_alias-when-building-for-musl.patch \
11           file://0002-src-global.c-Remove-superfluous-declaration-of-progr.patch \
12           file://CVE-2021-38185.patch \
13           "
14
15SRC_URI[md5sum] = "389c5452d667c23b5eceb206f5000810"
16SRC_URI[sha256sum] = "e87470d9c984317f658567c03bfefb6b0c829ff17dbf6b0de48d71a4c8f3db88"
17
18inherit autotools gettext texinfo
19
20# Issue applies to use of cpio in SUSE/OBS, doesn't apply to us
21CVE_CHECK_IGNORE += "CVE-2010-4226"
22
23EXTRA_OECONF += "DEFAULT_RMT_DIR=${sbindir}"
24
25do_install () {
26    autotools_do_install
27    if [ "${base_bindir}" != "${bindir}" ]; then
28        install -d ${D}${base_bindir}/
29        mv "${D}${bindir}/cpio" "${D}${base_bindir}/cpio"
30        if [ "${sbindir}" != "${bindir}" ]; then
31            rmdir ${D}${bindir}/
32        fi
33    fi
34
35    # Avoid conflicts with the version from tar
36    mv "${D}${mandir}/man8/rmt.8" "${D}${mandir}/man8/rmt-cpio.8"
37}
38
39PACKAGES =+ "${PN}-rmt"
40
41FILES:${PN}-rmt = "${sbindir}/rmt*"
42
43inherit update-alternatives
44
45ALTERNATIVE_PRIORITY = "100"
46
47ALTERNATIVE:${PN} = "cpio"
48ALTERNATIVE:${PN}-rmt = "rmt"
49
50ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio"
51
52ALTERNATIVE_PRIORITY[rmt] = "50"
53ALTERNATIVE_LINK_NAME[rmt] = "${sbindir}/rmt"
54
55BBCLASSEXTEND = "native nativesdk"
56