diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-25 15:37:04 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-25 15:37:04 +0000 |
commit | 225aa6172996a635d4a49670953f495b1f455e51 (patch) | |
tree | 8d72d5628f8fe36158e0f7b535c492c58dc39bcd | |
parent | dde303ccaa144d085b6dabbebfefdfc4ee2a0164 (diff) | |
download | poky-225aa6172996a635d4a49670953f495b1f455e51.tar.gz |
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
-rw-r--r-- | meta/packages/unzip/unzip-native_552.bb | 8 | ||||
-rw-r--r-- | meta/packages/unzip/unzip_552.bb | 21 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta/packages/unzip/unzip-native_552.bb b/meta/packages/unzip/unzip-native_552.bb new file mode 100644 index 0000000000..1d4b18cf42 --- /dev/null +++ b/meta/packages/unzip/unzip-native_552.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | SECTION = "console/utils" | ||
2 | inherit native | ||
3 | require unzip_${PV}.bb | ||
4 | |||
5 | do_stage() { | ||
6 | install -d ${STAGING_BINDIR} | ||
7 | install unzip ${STAGING_BINDIR} | ||
8 | } | ||
diff --git a/meta/packages/unzip/unzip_552.bb b/meta/packages/unzip/unzip_552.bb new file mode 100644 index 0000000000..2f06e1b1c6 --- /dev/null +++ b/meta/packages/unzip/unzip_552.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | DESCRIPTION = "A (de)compression library for the ZIP format" | ||
2 | SECTION = "console/utils" | ||
3 | LICENSE = "Info-ZIP" | ||
4 | PR = "r1" | ||
5 | |||
6 | SRC_URI = "http://ftp.info-zip.org/pub/infozip/src/unzip${PV}.tar.gz" | ||
7 | S = "${WORKDIR}/unzip-5.52" | ||
8 | |||
9 | export LD = "${CC}" | ||
10 | |||
11 | do_compile() { | ||
12 | oe_runmake -f unix/Makefile generic | ||
13 | } | ||
14 | |||
15 | do_install() { | ||
16 | oe_runmake -f unix/Makefile install prefix=${D}${prefix} | ||
17 | install -d ${D}${mandir} | ||
18 | mv ${D}${prefix}/man/* ${D}${mandir} | ||
19 | } | ||
20 | |||
21 | |||