blob: 30a1373fef7e5cce5a5f4caaf824d9c8b7dea58a (
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
34
35
36
37
38
39
40
41
42
43
44
45
|
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
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"
|