1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

unzip: added 552 from OE - needed for spectrum-fw

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2981 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz
2007-10-25 15:37:04 +00:00
parent dde303ccaa
commit 225aa61729
2 changed files with 29 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
SECTION = "console/utils"
inherit native
require unzip_${PV}.bb
do_stage() {
install -d ${STAGING_BINDIR}
install unzip ${STAGING_BINDIR}
}
+21
View File
@@ -0,0 +1,21 @@
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}
}