diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-04-04 16:20:39 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-04-04 16:20:39 +0000 |
commit | 387a0ad011929c68cc8b9f575796914152e81999 (patch) | |
tree | 43211d6aa11287f17617a20452b7b7c5da8d8b8a /meta/packages/zip/zip.inc | |
parent | 014e261e664799dac37c7a102a5965ed6aa1d0ea (diff) | |
download | poky-387a0ad011929c68cc8b9f575796914152e81999.tar.gz |
zip: updated to 2.32 (from OE) and cleaned
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1437 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/zip/zip.inc')
-rw-r--r-- | meta/packages/zip/zip.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/packages/zip/zip.inc b/meta/packages/zip/zip.inc new file mode 100644 index 0000000000..8d04bd5f61 --- /dev/null +++ b/meta/packages/zip/zip.inc | |||
@@ -0,0 +1,19 @@ | |||
1 | DESCRIPTION = "Archiver for .zip files" | ||
2 | SECTION = "console/utils" | ||
3 | LICENSE = "Info-ZIP" | ||
4 | |||
5 | SRC_URI = "http://ftp.info-zip.org/pub/infozip/src/zip${@bb.data.getVar('PV',d,1).replace('.', '')}.tar.gz" | ||
6 | |||
7 | EXTRA_OEMAKE = "'CC=${CC}' 'BIND=${CC}' 'AS=${CC} -c' 'CPP=${CPP}' \ | ||
8 | 'CFLAGS=-I. -DUNIX ${CFLAGS}' 'INSTALL=install' \ | ||
9 | 'BINFLAGS=0755' 'INSTALL_D=install -d'" | ||
10 | |||
11 | do_compile() { | ||
12 | oe_runmake -f unix/Makefile generic | ||
13 | } | ||
14 | |||
15 | do_install() { | ||
16 | oe_runmake -f unix/Makefile prefix=${D}${prefix} \ | ||
17 | BINDIR=${D}${bindir} MANDIR=${D}${mandir}/man1 \ | ||
18 | install | ||
19 | } | ||