tar: add 1.20
authorKoen Kooi <koen@openembedded.org>
Tue, 8 Jul 2008 17:21:03 +0000 (17:21 +0000)
committerKoen Kooi <koen@openembedded.org>
Tue, 8 Jul 2008 17:21:03 +0000 (17:21 +0000)
packages/tar/tar_1.20.bb [new file with mode: 0644]

diff --git a/packages/tar/tar_1.20.bb b/packages/tar/tar_1.20.bb
new file mode 100644 (file)
index 0000000..701c0b7
--- /dev/null
@@ -0,0 +1,25 @@
+DESCRIPTION = "GNU tar saves many files together into a single tape \
+or disk archive, and can restore individual files from the archive."
+SECTION = "base"
+LICENSE = "GPLv3"
+
+SRC_URI = "${GNU_MIRROR}/tar/tar-${PV}.tar.bz2"
+
+inherit autotools
+
+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}
+}