cpio: Move cpio from /usr/bin to /bin and use update-alternatives to select it in...
authorRod Whitby <rod@whitby.id.au>
Sun, 25 Mar 2007 13:38:24 +0000 (13:38 +0000)
committerRod Whitby <rod@whitby.id.au>
Sun, 25 Mar 2007 13:38:24 +0000 (13:38 +0000)
packages/cpio/cpio_2.5.bb

index 9762b2e..c21a59a 100644 (file)
@@ -2,7 +2,7 @@ DESCRIPTION = "GNU cpio is a program to manage archives of files."
 HOMEPAGE = "http://www.gnu.org/software/cpio/"
 SECTION = "console"
 LICENSE = "GPL"
-PR = "r3"
+PR = "r4"
 
 DEPENDS += " texinfo-native "
 
@@ -14,16 +14,20 @@ inherit autotools
 
 do_install () {
        autotools_do_install
+       install -d ${D}${base_bindir}/
+       mv ${D}${bindir}/cpio ${D}${base_bindir}/cpio.${PN}
        mv ${D}${libexecdir}/rmt ${D}${libexecdir}/rmt.${PN}
 }
 
 
 pkg_postinst_${PN} () {
+       update-alternatives --install ${base_bindir}/cpio cpio cpio.${PN} 100
        update-alternatives --install ${libexecdir}/rmt rmt rmt.${PN} 50
 }
 
 
 pkg_prerm_${PN} () {
+       update-alternatives --remove cpio cpio.${PN}
        update-alternatives --remove rmt rmt.${PN}
 }