diff options
author | Leon Woestenberg <leon.woestenberg@gmail.com> | 2006-10-12 15:18:19 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-12 15:18:19 +0000 |
commit | 7c4b16638180a26dfef911c76747f9d507d89991 (patch) | |
tree | 33948c8a95c88f45503b1055976e4bf77f4dadbc /packages/lzma | |
parent | 6d24cd2c3e70d50dc3eec4e919ee982007a78363 (diff) |
lzma: added 4.17 - close #1467
Diffstat (limited to 'packages/lzma')
-rw-r--r-- | packages/lzma/lzma_4.17.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/packages/lzma/lzma_4.17.bb b/packages/lzma/lzma_4.17.bb new file mode 100644 index 0000000000..eae7e3d1c1 --- /dev/null +++ b/packages/lzma/lzma_4.17.bb @@ -0,0 +1,36 @@ +DESCRIPTION = "LZMA is a general compression method. LZMA provides high compression ratio and very fast decompression." +HOMEPAGE = "http://www.7-zip.org/" +LICENSE = "LGPL" +PR = "r0" + +SRC_URI = "http://www.7-zip.org/dl/lzma417.tar.bz2 \ + file://lzma-406-zlib-stream.patch;patch=1;pnum=2" + +S = "${WORKDIR}/SRC" + +EXTRA_OEMAKE += "CXX_C='${CC}'" + +CFLAGS += "-c -I${S}" + +# If you run into "internal compiler error" failures with gcc, disable optimization +# using -O0, or use -O1 or -O2 instead of -Os. (reported failure: gcc 3.4.4 for sh4) +#FULL_OPTIMIZATION = "-O0" + +# One such reported failure is a cross-gcc 3.4.4 for sh4: +FULL_OPTIMIZATION_sh4 = "-O1" + +do_compile() { + oe_runmake -C 7zip/Compress/LZMA_Alone + oe_runmake -C 7zip/Compress/LZMA_Lib +} + +do_install() { + install -d ${D}${bindir} ${D}${libdir} + install -m 0755 7zip/Compress/LZMA_Alone/lzma ${D}${bindir} + oe_libinstall -a -C 7zip/Compress/LZMA_Lib liblzma ${D}${libdir} +} + +do_stage () { + install -m 0755 7zip/Compress/LZMA_Alone/lzma ${STAGING_BINDIR} + oe_libinstall -a -C 7zip/Compress/LZMA_Lib liblzma ${STAGING_LIBDIR} +} |