time: Make /usr/bin/time use update-alternatives
authorTom Rini <tom_rini@mentor.com>
Fri, 10 Sep 2010 19:20:25 +0000 (12:20 -0700)
committerTom Rini <tom_rini@mentor.com>
Mon, 13 Sep 2010 16:00:45 +0000 (09:00 -0700)
This is a little funny as we don't want u-a on the -native.

Signed-off-by: Tom Rini <tom_rini@mentor.com>
recipes/time/time.inc

index 9f510da..c5e37d4 100644 (file)
@@ -1,6 +1,21 @@
 DESCRIPTION = "time measures many of the CPU resources, such as time and \
 memory, that other programs use."
 HOMEPAGE = "http://www.gnu.org/software/time/"
-LICENSE = "GPL"
 SECTION = "utils"
+LICENSE = "GPL"
+PR = "r1"
+
+# We only want rename for update-alternatives on the target
+do_install_append_pn-time () {
+        mv ${D}${bindir}/time ${D}${bindir}/time.${PN}
+}
+
+pkg_prerm_${PN} () {
+        update-alternatives --remove time time.${PN}
+}
+
+pkg_postinst_${PN} () {
+        update-alternatives --install ${bindir}/time time time.${PN} 100
+}
+
 BBCLASSEXTEND = "native"