diff options
| author | Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> | 2021-02-14 02:22:13 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-16 11:28:16 +0000 |
| commit | 607dccffbc179aecd0fbcfed5d249b89a7e4a204 (patch) | |
| tree | c15f4e2e1fc0fb1b73dae63a186dc32a939ee369 /meta/recipes-extended/tar/tar_1.34.bb | |
| parent | 2e32affc98315dad02e353a7d2f8ad9e59909e00 (diff) | |
| download | poky-607dccffbc179aecd0fbcfed5d249b89a7e4a204.tar.gz | |
tar: update to 1.34
(From OE-Core rev: 6dd51b6d2f2c7110d8c2755dadcdb04f60db7d83)
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/tar/tar_1.34.bb')
| -rw-r--r-- | meta/recipes-extended/tar/tar_1.34.bb | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/meta/recipes-extended/tar/tar_1.34.bb b/meta/recipes-extended/tar/tar_1.34.bb new file mode 100644 index 0000000000..af04919c41 --- /dev/null +++ b/meta/recipes-extended/tar/tar_1.34.bb | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | SUMMARY = "GNU file archiving program" | ||
| 2 | DESCRIPTION = "GNU tar saves many files together into a single tape \ | ||
| 3 | or disk archive, and can restore individual files from the archive." | ||
| 4 | HOMEPAGE = "http://www.gnu.org/software/tar/" | ||
| 5 | SECTION = "base" | ||
| 6 | LICENSE = "GPLv3" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
| 8 | |||
| 9 | SRC_URI = "${GNU_MIRROR}/tar/tar-${PV}.tar.bz2" | ||
| 10 | |||
| 11 | SRC_URI[sha256sum] = "b44cc67f8a1f6b0250b7c860e952b37e8ed932a90bd9b1862a511079255646ff" | ||
| 12 | |||
| 13 | inherit autotools gettext texinfo | ||
| 14 | |||
| 15 | PACKAGECONFIG ??= "" | ||
| 16 | PACKAGECONFIG_append_class-target = " ${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)}" | ||
| 17 | |||
| 18 | PACKAGECONFIG[acl] = "--with-posix-acls,--without-posix-acls,acl" | ||
| 19 | |||
| 20 | EXTRA_OECONF += "DEFAULT_RMT_DIR=${sbindir}" | ||
| 21 | |||
| 22 | CACHED_CONFIGUREVARS += "tar_cv_path_RSH=no" | ||
| 23 | |||
| 24 | # Let aclocal use the relative path for the m4 file rather than the | ||
| 25 | # absolute since tar has a lot of m4 files, otherwise there might | ||
| 26 | # be an "Argument list too long" error when it is built in a long/deep | ||
| 27 | # directory. | ||
| 28 | acpaths = "-I ./m4" | ||
| 29 | |||
| 30 | do_install () { | ||
| 31 | autotools_do_install | ||
| 32 | ln -s tar ${D}${bindir}/gtar | ||
| 33 | } | ||
| 34 | |||
| 35 | do_install_append_class-target() { | ||
| 36 | if [ "${base_bindir}" != "${bindir}" ]; then | ||
| 37 | install -d ${D}${base_bindir} | ||
| 38 | mv ${D}${bindir}/tar ${D}${base_bindir}/tar | ||
| 39 | mv ${D}${bindir}/gtar ${D}${base_bindir}/gtar | ||
| 40 | rmdir ${D}${bindir}/ | ||
| 41 | fi | ||
| 42 | } | ||
| 43 | |||
| 44 | PACKAGES =+ "${PN}-rmt" | ||
| 45 | |||
| 46 | FILES_${PN}-rmt = "${sbindir}/rmt*" | ||
| 47 | |||
| 48 | inherit update-alternatives | ||
| 49 | |||
| 50 | ALTERNATIVE_PRIORITY = "100" | ||
| 51 | |||
| 52 | ALTERNATIVE_${PN} = "tar" | ||
| 53 | ALTERNATIVE_${PN}-rmt = "rmt" | ||
| 54 | ALTERNATIVE_${PN}_class-nativesdk = "" | ||
| 55 | ALTERNATIVE_${PN}-rmt_class-nativesdk = "" | ||
| 56 | |||
| 57 | ALTERNATIVE_LINK_NAME[tar] = "${base_bindir}/tar" | ||
| 58 | ALTERNATIVE_LINK_NAME[rmt] = "${sbindir}/rmt" | ||
| 59 | |||
| 60 | PROVIDES_append_class-native = " tar-replacement-native" | ||
| 61 | NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}" | ||
| 62 | |||
| 63 | BBCLASSEXTEND = "native nativesdk" | ||
