mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 03:32:13 +02:00
* tar 1.23 is GPLv3 * tar 1.17 is latest GPLv2 Recipes and patches dervied from OpenEmbedded and Debian Signed-off-by: Scott Garman <scott.a.garman@intel.com>
26 lines
753 B
PHP
26 lines
753 B
PHP
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
|
|
|
|
do_install () {
|
|
autotools_do_install
|
|
install -d ${D}${base_bindir}
|
|
mv ${D}${bindir}/tar ${D}${base_bindir}/tar.${PN}
|
|
mv ${D}${libexecdir}/rmt ${D}${libexecdir}/rmt.${PN}
|
|
}
|
|
|
|
pkg_postinst_${PN} () {
|
|
update-alternatives --install ${base_bindir}/tar tar tar.${PN} 100
|
|
update-alternatives --install ${libexecdir}/rmt rmt rmt.${PN} 100
|
|
}
|
|
|
|
pkg_prerm_${PN} () {
|
|
update-alternatives --remove tar tar.${PN}
|
|
update-alternatives --remove rmt rmt.${PN}
|
|
}
|