aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/lzma/lzma.inc
blob: bffbeb2d3b5883dae89cf56b193e9b6b1519fb41 (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
37
38
39
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"
INC_PR = "r2"

SRC_URI = "http://downloads.sourceforge.net/sevenzip/lzma${@bb.data.getVar('PV',d,1).replace('.','')}.tar.bz2 \
           file://001-large_files.patch;patch=1 \
           file://002-lzmp.patch;patch=1 \
           file://003-compile_fixes.patch;patch=1 \
           file://100-static_library.patch;patch=1"

S = "${WORKDIR}"

EXTRA_OEMAKE = "-f makefile.gcc"

CFLAGS += "-c -I${S}"

do_unpack_append() {
        # Replace MS-DOS line-endings with Unix style line-endings
        os.system("find ${S} -type f -print0 | xargs -0 sed 's/\r$//' -i")
}

do_compile() {
        oe_runmake -C C/LzmaUtil
        oe_runmake -C CPP/7zip/Compress/LZMA_Alone
}

do_install() {
        install -d ${D}${bindir} ${D}${libdir}
        install -m 0755 CPP/7zip/Compress/LZMA_Alone/lzma ${D}${bindir}
        oe_libinstall -a -C C/LzmaUtil liblzma ${D}${libdir}
}

do_stage () {
        install --d ${STAGING_INCDIR}/lzma
        install -m 0644 C/*.h ${STAGING_INCDIR}/lzma
        oe_libinstall -a -C C/LzmaUtil liblzma ${STAGING_LIBDIR}
}