2 "name": "LzmaSDK-ObjC",
4 "summary": "Lzma SDK for Objective-C based on extended functionality of the C++ LZMA code",
5 "description": "It's not yet another wrapper around C part of the LZMA SDK with all it's limitations.\nBased on C++ LZMA SDK version 15.14 (1514 - latest for now) and patched for iOS & MacOS platforms.\nThe main advantages is:\n- List, extract 7z files (Lzma & Lzma2 compression method).\n- List, extract encrypted (password protected) 7z files (Lzma & Lzma2 compression method).\n- List, extract encrypted (password protected) + encrypted header (no visible content, files list, without password) 7z files (Lzma & Lzma2 compression method).\n- Manage memory allocations during listing/extracting.\n- Tuned up for using less than 500Kb for listing/extracting, can be easly changed runtime (no hardcoded definitions).\n- Manage IO read/write operations, aslo can be easly changed runtime (no hardcoded definitions).\n- Track smoothed progress, which becomes possible with prev.\n- Support reading archive files with size more than 4GB and extracting files with size more than 4GB eg. HugeFiles=on",
6 "homepage": "https://github.com/OlehKulykov/LzmaSDKObjC",
9 "OlehKulykov": "info@resident.name"
12 "git": "https://github.com/OlehKulykov/LzmaSDKObjC.git",
20 "public_header_files": [
21 "src/LzmaSDKObjCTypes.h",
22 "src/LzmaSDKObjCReader.h",
23 "src/LzmaSDKObjCItem.h",
24 "src/LzmaSDKObjCBufferProcessor.h",
29 "lzma/CPP/7zip/*.{h}",
30 "lzma/CPP/7zip/Crypto/*.{h}",
31 "lzma/CPP/7zip/Crypto/7zAes.cpp",
32 "lzma/CPP/7zip/Crypto/7zAesRegister.cpp",
33 "lzma/CPP/7zip/Crypto/MyAes.cpp",
34 "lzma/CPP/7zip/Crypto/MyAesReg.cpp",
35 "lzma/CPP/7zip/Crypto/RandGen.cpp",
36 "lzma/CPP/7zip/Archive/7z/*.{h}",
37 "lzma/CPP/7zip/Archive/7z/7zRegister.cpp",
38 "lzma/CPP/7zip/Archive/7z/7zSpecStream.cpp",
39 "lzma/CPP/7zip/Archive/7z/7zExtract.cpp",
40 "lzma/CPP/7zip/Archive/7z/7zProperties.cpp",
41 "lzma/CPP/7zip/Archive/7z/7zDecode.cpp",
42 "lzma/CPP/7zip/Archive/7z/7zEncode.cpp",
43 "lzma/CPP/7zip/Archive/7z/7zFolderInStream.cpp",
44 "lzma/CPP/7zip/Archive/7z/7zUpdate.cpp",
45 "lzma/CPP/7zip/Archive/7z/7zHeader.cpp",
46 "lzma/CPP/7zip/Archive/7z/7zOut.cpp",
47 "lzma/CPP/7zip/Archive/7z/7zHandlerOut.cpp",
48 "lzma/CPP/7zip/Archive/7z/7zIn.cpp",
49 "lzma/CPP/7zip/Archive/7z/7zHandler.cpp",
50 "lzma/CPP/7zip/Archive/7z/StdAfx.cpp",
51 "lzma/CPP/7zip/Archive/*.{h}",
52 "lzma/CPP/7zip/Archive/XzHandler.cpp",
53 "lzma/CPP/7zip/Archive/LzmaHandler.cpp",
54 "lzma/CPP/7zip/Archive/ArchiveExports.cpp",
55 "lzma/CPP/7zip/Archive/DllExports2.cpp",
56 "lzma/CPP/7zip/Archive/Common/*.{h}",
57 "lzma/CPP/7zip/Archive/Common/ItemNameUtils.cpp",
58 "lzma/CPP/7zip/Archive/Common/CoderMixer2.cpp",
59 "lzma/CPP/7zip/Archive/Common/DummyOutStream.cpp",
60 "lzma/CPP/7zip/Archive/Common/HandlerOut.cpp",
61 "lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.cpp",
62 "lzma/CPP/7zip/Compress/*.{h}",
63 "lzma/CPP/7zip/Compress/BcjCoder.cpp",
64 "lzma/CPP/7zip/Compress/BcjRegister.cpp",
65 "lzma/CPP/7zip/Compress/CopyCoder.cpp",
66 "lzma/CPP/7zip/Compress/CodecExports.cpp",
67 "lzma/CPP/7zip/Compress/LzmaDecoder.cpp",
68 "lzma/CPP/7zip/Compress/LzmaEncoder.cpp",
69 "lzma/CPP/7zip/Compress/LzmaRegister.cpp",
70 "lzma/CPP/7zip/Compress/Lzma2Decoder.cpp",
71 "lzma/CPP/7zip/Compress/Lzma2Encoder.cpp",
72 "lzma/CPP/7zip/Compress/Lzma2Register.cpp",
73 "lzma/CPP/7zip/Common/*.{h}",
74 "lzma/CPP/7zip/Common/LimitedStreams.cpp",
75 "lzma/CPP/7zip/Common/StreamObjects.cpp",
76 "lzma/CPP/7zip/Common/InOutTempBuffer.cpp",
77 "lzma/CPP/7zip/Common/StreamBinder.cpp",
78 "lzma/CPP/7zip/Common/VirtThread.cpp",
79 "lzma/CPP/7zip/Common/OutBuffer.cpp",
80 "lzma/CPP/7zip/Common/MethodProps.cpp",
81 "lzma/CPP/7zip/Common/PropId.cpp",
82 "lzma/CPP/7zip/Common/ProgressUtils.cpp",
83 "lzma/CPP/7zip/Common/FilterCoder.cpp",
84 "lzma/CPP/7zip/Common/CWrappers.cpp",
85 "lzma/CPP/7zip/Common/StreamUtils.cpp",
86 "lzma/CPP/7zip/Common/CreateCoder.cpp",
87 "lzma/CPP/7zip/Common/FileStreams.cpp",
88 "lzma/CPP/7zip/Common/LockedStream.cpp",
89 "lzma/CPP/Windows/*.{h}",
90 "lzma/CPP/Windows/PropVariantConv.cpp",
91 "lzma/CPP/Windows/System.cpp",
92 "lzma/CPP/Windows/PropVariant.cpp",
93 "lzma/CPP/Windows/FileName.cpp",
94 "lzma/CPP/Windows/FileFind.cpp",
95 "lzma/CPP/Windows/FileDir.cpp",
96 "lzma/CPP/Windows/DLL.cpp",
97 "lzma/CPP/Common/*.{h}",
98 "lzma/CPP/Common/Sha256Reg.cpp",
99 "lzma/CPP/Common/XzCrc64Reg.cpp",
100 "lzma/CPP/Common/CrcReg.cpp",
101 "lzma/CPP/Common/Wildcard.cpp",
102 "lzma/CPP/Common/StringToInt.cpp",
103 "lzma/CPP/Common/C_FileIO.cpp",
104 "lzma/CPP/Common/MyString.cpp",
105 "lzma/CPP/Common/StringConvert.cpp",
106 "lzma/CPP/Common/IntToString.cpp",
107 "lzma/CPP/Common/MyWindows.cpp",
111 "lzma/C/XzCrc64Opt.c",
138 "-DLZMASDKOBJC_OMIT_UNUSED_CODE=1"
140 "libraries": "stdc++",