[oe-commits] Tom Rini : unzip: Add update-alternatives to unzip

git version control git at git.openembedded.org
Fri Nov 12 03:15:57 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 902b98f32ffd35661e43382f47226f65528ff1b1
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=902b98f32ffd35661e43382f47226f65528ff1b1

Author: Tom Rini <tom_rini at mentor.com>
Date:   Thu Nov 11 20:06:33 2010 -0700

unzip: Add update-alternatives to unzip

Signed-off-by: Tom Rini <tom_rini at mentor.com>

---

 recipes/unzip/unzip_552.bb |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/recipes/unzip/unzip_552.bb b/recipes/unzip/unzip_552.bb
index 6e3497e..0decc4a 100644
--- a/recipes/unzip/unzip_552.bb
+++ b/recipes/unzip/unzip_552.bb
@@ -1,7 +1,7 @@
 DESCRIPTION = "A (de)compression library for the ZIP format"
 SECTION = "console/utils"
 LICENSE = "Info-ZIP"
-PR = "r1"
+PR = "r2"
 SRC_URI = "${SOURCEFORGE_MIRROR}/project/infozip/UnZip%205.x%20and%20earlier/5.52/unzip${PV}.tar.gz"
 S = "${WORKDIR}/unzip-5.52"
 
@@ -19,6 +19,15 @@ do_install() {
         oe_runmake -f unix/Makefile install prefix=${D}${prefix}
 	install -d ${D}${mandir}
 	mv ${D}${prefix}/man/* ${D}${mandir}
+	mv ${D}${bindir}/unzip ${D}${bindir}/unzip.${PN}
+}
+
+pkg_postinst_${PN} () {
+	update-alternatives --install ${bindir}/unzip unzip unzip.${PN} 100
+}
+
+pkg_prerm_${PN} () {
+	update-alternatives --remove unzip unzip.${PN}
 }
 
 SRC_URI[md5sum] = "9d23919999d6eac9217d1f41472034a9"





More information about the Openembedded-commits mailing list