summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/tar/tar.inc
blob: bbed65c2cd6d9d2fa9107315a55c300aa3475e81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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"
PRIORITY = "optional"

SRC_URI = "${GNU_MIRROR}/tar/tar-${PV}.tar.bz2"

inherit autotools gettext

EXTRAINSTALL = "do_install_extra"

do_install () {
    autotools_do_install
    install -d ${D}${base_bindir}
    ${EXTRAINSTALL}
}

do_install_extra () {
    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}
}