rpm2cpio-native: convert to new style staging, remove 'do_stage()'
authorNoor Ahsan <noor_ahsan@mentor.com>
Tue, 17 Aug 2010 03:20:10 +0000 (03:20 +0000)
committerFrans Meulenbroeks <fransmeulenbroeks@gmail.com>
Thu, 19 Aug 2010 20:47:23 +0000 (22:47 +0200)
* Replace do_stage() with do_install from the recipe and replace all occurrences of ${STAGING_BINDIR} with ${D}{bindir}.
* Add NATIVE_INSTALL_WORKS = "1"
* Bump PR to "r1"

Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com>
recipes/rpm2cpio/rpm2cpio-native_1.2_2.bb

index 252fd53..ac3d673 100644 (file)
@@ -3,6 +3,7 @@
 # Released under the MIT license (see COPYING.MIT)
 LICENSE = "BSD"
 DEPENDS = "perl-native"
+PR = "r1"
 
 SRC_URI = "http://www.freebsd.org/cgi/cvsweb.cgi/%7Echeckout%7E/ports/archivers/rpm2cpio/files/rpm2cpio?rev=1.2"
 SRC_URI[md5sum] = "07f64fa3dae6eb8b1b578d01473a5c07"
@@ -14,12 +15,14 @@ inherit native
 
 do_compile() {
 }
-do_stage() {
-        install -d ${STAGING_BINDIR}
+do_install() {
+        install -d ${D}${bindir}
         sed -e '1,1s|${bindir}/|${bindir}/env |' "rpm2cpio?rev=1.2" \
-                > ${STAGING_BINDIR}/rpm2cpio.pl
+                > ${D}${bindir}/rpm2cpio.pl
         my_PERL="/usr/bin/env perl"
-        sed -e "s%/[a-zA-Z0-9/]*/bin/perl%$my_PERL%g" -i ${STAGING_BINDIR}/rpm2cpio.pl
-        chmod 0755 ${STAGING_BINDIR}/rpm2cpio.pl
+        sed -e "s%/[a-zA-Z0-9/]*/bin/perl%$my_PERL%g" -i ${D}${bindir}/rpm2cpio.pl
+        chmod 0755 ${D}${bindir}/rpm2cpio.pl
 }
 
+NATIVE_INSTALL_WORKS = "1"
+