aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/lzma/lzma_4.17.bb
blob: f83ddd587e94979610cf0faed57e1f502d892275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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"
DEPENDS = "zlib"
PR = "r1"

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 () {
        oe_libinstall -a -C 7zip/Compress/LZMA_Lib liblzma ${STAGING_LIBDIR}
}