mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
(From OE-Core rev: fb3457a454b045abf1fa6b560b8f96257a4405c1) Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
SUMMARY = "GNU cpio is a program to manage archives of files"
|
|
DESCRIPTION = "GNU cpio is a tool for creating and extracting archives, or copying files from one place to \
|
|
another. It handles a number of cpio formats as well as reading and writing tar files."
|
|
HOMEPAGE = "http://www.gnu.org/software/cpio/"
|
|
SECTION = "base"
|
|
|
|
DEPENDS = "texinfo-native"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \
|
|
"
|
|
|
|
inherit autotools gettext texinfo
|
|
|
|
S = "${WORKDIR}/cpio-${PV}"
|
|
|
|
EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}"
|
|
|
|
do_install () {
|
|
autotools_do_install
|
|
if [ "${base_bindir}" != "${bindir}" ]; then
|
|
install -d ${D}${base_bindir}/
|
|
mv "${D}${bindir}/cpio" "${D}${base_bindir}/cpio"
|
|
rmdir ${D}${bindir}/
|
|
fi
|
|
}
|
|
|
|
PACKAGES =+ "${PN}-rmt"
|
|
|
|
FILES_${PN}-rmt = "${base_sbindir}/rmt*"
|
|
|
|
inherit update-alternatives
|
|
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
|
|
ALTERNATIVE_${PN} = "cpio"
|
|
ALTERNATIVE_${PN}-rmt = "rmt"
|
|
|
|
ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio"
|
|
|
|
ALTERNATIVE_PRIORITY[rmt] = "50"
|
|
ALTERNATIVE_LINK_NAME[rmt] = "${base_sbindir}/rmt"
|
|
|
|
BBCLASSEXTEND = "native"
|