--- /dev/null
+SECTION = "console/utils"
+inherit native
+require unzip_${PV}.bb
+
+do_stage() {
+ install -d ${STAGING_BINDIR}
+ install unzip ${STAGING_BINDIR}
+}
--- /dev/null
+DESCRIPTION = "A (de)compression library for the ZIP format"
+SECTION = "console/utils"
+LICENSE = "Info-ZIP"
+PR = "r1"
+
+SRC_URI = "http://ftp.info-zip.org/pub/infozip/src/unzip${PV}.tar.gz"
+S = "${WORKDIR}/unzip-5.52"
+
+export LD = "${CC}"
+
+do_compile() {
+ oe_runmake -f unix/Makefile generic
+}
+
+do_install() {
+ oe_runmake -f unix/Makefile install prefix=${D}${prefix}
+ install -d ${D}${mandir}
+ mv ${D}${prefix}/man/* ${D}${mandir}
+}
+
+