mirror of
https://git.yoctoproject.org/poky
synced 2026-09-16 00:49:32 +02:00
The class itself currently does nothing. The idea is to mark all recipes that make use of the texinfo utilities. In the future, this class could be used to suppress the generation/formatting of documentation for performance, explicitly track dependencies on these utilities, and eliminate Yocto's current dependency on the host system's texinfo utilities. (From OE-Core rev: e6fb2f9afe2ba6b676c46d1eb297ca9cc532d405) Signed-off-by: Max Eliaser <max.eliaser@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
SUMMARY = "GNU file archiving program"
|
|
DESCRIPTION = "GNU tar saves many files together into a single tape \
|
|
or disk archive, and can restore individual files from the archive."
|
|
HOMEPAGE = "http://www.gnu.org/software/tar/"
|
|
SECTION = "base"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/tar/tar-${PV}.tar.bz2"
|
|
|
|
inherit autotools gettext texinfo
|
|
|
|
EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}"
|
|
|
|
EXTRAINSTALL = "do_install_extra"
|
|
EXTRAINSTALL_class-nativesdk = ""
|
|
|
|
do_install () {
|
|
autotools_do_install
|
|
${EXTRAINSTALL}
|
|
}
|
|
|
|
do_install_extra () {
|
|
install -d ${D}${base_bindir}
|
|
mv ${D}${bindir}/tar ${D}${base_bindir}/tar
|
|
rmdir ${D}${bindir}/
|
|
}
|
|
|
|
PACKAGES =+ "${PN}-rmt"
|
|
|
|
PACKAGECONFIG[acl] = "--with-posix-acls, --without-posix-acls, acl,"
|
|
|
|
FILES_${PN}-rmt = "${base_sbindir}/rmt*"
|
|
|
|
inherit update-alternatives
|
|
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
|
|
ALTERNATIVE_${PN} = "tar"
|
|
ALTERNATIVE_${PN}-rmt = "rmt"
|
|
ALTERNATIVE_${PN}_class-nativesdk = ""
|
|
ALTERNATIVE_${PN}-rmt_class-nativesdk = ""
|
|
|
|
ALTERNATIVE_LINK_NAME[tar] = "${base_bindir}/tar"
|
|
ALTERNATIVE_LINK_NAME[rmt] = "${base_sbindir}/rmt"
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|