[Add] FishjamCloudClient 0.6.0
[CocoaPods.git] / Specs / 1 / d / c / LzmaSDK-ObjC / 2.1.1 / LzmaSDK-ObjC.podspec.json
blob52d8aaf7a8006a75e435cdb509f7c04405dceb9f
2   "name": "LzmaSDK-ObjC",
3   "version": "2.1.1",
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 19.00 (1900 - latest for now) and patched for iOS & MacOS platforms.\nCan be used with Swift and Objective-C.\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- Create 7z archives (Lzma & Lzma2 compression method).\n- Create encrypted (password protected) 7z archives (Lzma & Lzma2 compression method).\n- Create encrypted (password protected) + encrypted header (no visible content, files list, without password) 7z archives (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 and extracting archive files with size more than 4GB. HugeFiles=on\n- UTF8 support.\n- Extra compression/decompression functionality of single NSData object with Lzma2.",
6   "homepage": "https://github.com/OlehKulykov/LzmaSDKObjC",
7   "license": "MIT",
8   "authors": {
9     "OlehKulykov": "info@resident.name"
10   },
11   "source": {
12     "git": "https://github.com/OlehKulykov/LzmaSDKObjC.git",
13     "tag": "2.1.1"
14   },
15   "platforms": {
16     "ios": "9.0",
17     "osx": "10.9"
18   },
19   "requires_arc": true,
20   "public_header_files": [
21     "src/LzmaSDKObjCTypes.h",
22     "src/LzmaSDKObjCExtern.h",
23     "src/LzmaSDKObjCReader.h",
24     "src/LzmaSDKObjCWriter.h",
25     "src/LzmaSDKObjCItem.h",
26     "src/LzmaSDKObjCMutableItem.h",
27     "src/LzmaSDKObjCBufferProcessor.h",
28     "src/LzmaSDKObjCCrc.h",
29     "src/LzmaSDKObjC.h"
30   ],
31   "source_files": [
32     "src/*.{h,cpp,mm}",
33     "lzma/C/*.{h}",
34     "lzma/C/7zCrc.c",
35     "lzma/C/7zCrcOpt.c",
36     "lzma/C/7zStream.c",
37     "lzma/C/Aes.c",
38     "lzma/C/AesOpt.c",
39     "lzma/C/Alloc.c",
40     "lzma/C/Bcj2.c",
41     "lzma/C/Bcj2Enc.c",
42     "lzma/C/Bra.c",
43     "lzma/C/Bra86.c",
44     "lzma/C/BraIA64.c",
45     "lzma/C/CpuArch.c",
46     "lzma/C/Delta.c",
47     "lzma/C/LzFind.c",
48     "lzma/C/LzFindMt.c",
49     "lzma/C/Lzma2Dec.c",
50     "lzma/C/Lzma2DecMt.c",
51     "lzma/C/Lzma2Enc.c",
52     "lzma/C/LzmaDec.c",
53     "lzma/C/LzmaEnc.c",
54     "lzma/C/MtCoder.c",
55     "lzma/C/Ppmd7.c",
56     "lzma/C/Ppmd7Dec.c",
57     "lzma/C/Ppmd7Enc.c",
58     "lzma/C/Sha256.c",
59     "lzma/C/Threads.c",
60     "lzma/C/Xz.c",
61     "lzma/C/XzCrc64.c",
62     "lzma/C/XzCrc64Opt.c",
63     "lzma/C/XzDec.c",
64     "lzma/C/XzEnc.c",
65     "lzma/C/XzIn.c",
66     "lzma/CPP/7zip/*.{h}",
67     "lzma/CPP/7zip/Archive/*.{h}",
68     "lzma/CPP/7zip/Archive/7z/*.{h}",
69     "lzma/CPP/7zip/Archive/7z/7zDecode.cpp",
70     "lzma/CPP/7zip/Archive/7z/7zEncode.cpp",
71     "lzma/CPP/7zip/Archive/7z/7zExtract.cpp",
72     "lzma/CPP/7zip/Archive/7z/7zFolderInStream.cpp",
73     "lzma/CPP/7zip/Archive/7z/7zHandler.cpp",
74     "lzma/CPP/7zip/Archive/7z/7zHandlerOut.cpp",
75     "lzma/CPP/7zip/Archive/7z/7zHeader.cpp",
76     "lzma/CPP/7zip/Archive/7z/7zIn.cpp",
77     "lzma/CPP/7zip/Archive/7z/7zOut.cpp",
78     "lzma/CPP/7zip/Archive/7z/7zProperties.cpp",
79     "lzma/CPP/7zip/Archive/7z/7zRegister.cpp",
80     "lzma/CPP/7zip/Archive/7z/7zSpecStream.cpp",
81     "lzma/CPP/7zip/Archive/7z/7zUpdate.cpp",
82     "lzma/CPP/7zip/Archive/ArchiveExports.cpp",
83     "lzma/CPP/7zip/Archive/Common/*.{h}",
84     "lzma/CPP/7zip/Archive/Common/CoderMixer2.cpp",
85     "lzma/CPP/7zip/Archive/Common/DummyOutStream.cpp",
86     "lzma/CPP/7zip/Archive/Common/HandlerOut.cpp",
87     "lzma/CPP/7zip/Archive/Common/ItemNameUtils.cpp",
88     "lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.cpp",
89     "lzma/CPP/7zip/Archive/DllExports2.cpp",
90     "lzma/CPP/7zip/Archive/LzmaHandler.cpp",
91     "lzma/CPP/7zip/Common/*.{h}",
92     "lzma/CPP/7zip/Common/CreateCoder.cpp",
93     "lzma/CPP/7zip/Common/CWrappers.cpp",
94     "lzma/CPP/7zip/Common/FileStreams.cpp",
95     "lzma/CPP/7zip/Common/FilterCoder.cpp",
96     "lzma/CPP/7zip/Common/InOutTempBuffer.cpp",
97     "lzma/CPP/7zip/Common/LimitedStreams.cpp",
98     "lzma/CPP/7zip/Common/LockedStream.cpp",
99     "lzma/CPP/7zip/Common/MethodProps.cpp",
100     "lzma/CPP/7zip/Common/OutBuffer.cpp",
101     "lzma/CPP/7zip/Common/ProgressUtils.cpp",
102     "lzma/CPP/7zip/Common/PropId.cpp",
103     "lzma/CPP/7zip/Common/StreamBinder.cpp",
104     "lzma/CPP/7zip/Common/StreamObjects.cpp",
105     "lzma/CPP/7zip/Common/StreamUtils.cpp",
106     "lzma/CPP/7zip/Common/VirtThread.cpp",
107     "lzma/CPP/7zip/Compress/*.{h}",
108     "lzma/CPP/7zip/Compress/Bcj2Coder.cpp",
109     "lzma/CPP/7zip/Compress/Bcj2Register.cpp",
110     "lzma/CPP/7zip/Compress/BcjCoder.cpp",
111     "lzma/CPP/7zip/Compress/BcjRegister.cpp",
112     "lzma/CPP/7zip/Compress/BranchMisc.cpp",
113     "lzma/CPP/7zip/Compress/BranchRegister.cpp",
114     "lzma/CPP/7zip/Compress/ByteSwap.cpp",
115     "lzma/CPP/7zip/Compress/CodecExports.cpp",
116     "lzma/CPP/7zip/Compress/CopyCoder.cpp",
117     "lzma/CPP/7zip/Compress/CopyRegister.cpp",
118     "lzma/CPP/7zip/Compress/Lzma2Decoder.cpp",
119     "lzma/CPP/7zip/Compress/Lzma2Encoder.cpp",
120     "lzma/CPP/7zip/Compress/Lzma2Register.cpp",
121     "lzma/CPP/7zip/Compress/LzmaDecoder.cpp",
122     "lzma/CPP/7zip/Compress/LzmaEncoder.cpp",
123     "lzma/CPP/7zip/Compress/LzmaRegister.cpp",
124     "lzma/CPP/7zip/Compress/PpmdDecoder.cpp",
125     "lzma/CPP/7zip/Compress/PpmdEncoder.cpp",
126     "lzma/CPP/7zip/Compress/PpmdRegister.cpp",
127     "lzma/CPP/7zip/Crypto/*.{h}",
128     "lzma/CPP/7zip/Crypto/7zAes.cpp",
129     "lzma/CPP/7zip/Crypto/7zAesRegister.cpp",
130     "lzma/CPP/7zip/Crypto/MyAes.cpp",
131     "lzma/CPP/7zip/Crypto/MyAesReg.cpp",
132     "lzma/CPP/7zip/Crypto/RandGen.cpp",
133     "lzma/CPP/Common/*.{h}",
134     "lzma/CPP/Common/C_FileIO.cpp",
135     "lzma/CPP/Common/CrcReg.cpp",
136     "lzma/CPP/Common/IntToString.cpp",
137     "lzma/CPP/Common/MyString.cpp",
138     "lzma/CPP/Common/MyWindows.cpp",
139     "lzma/CPP/Common/Sha256Reg.cpp",
140     "lzma/CPP/Common/StringConvert.cpp",
141     "lzma/CPP/Common/StringToInt.cpp",
142     "lzma/CPP/Common/Wildcard.cpp",
143     "lzma/CPP/Common/XzCrc64Reg.cpp",
144     "lzma/CPP/Windows/*.{h}",
145     "lzma/CPP/Windows/PropVariant.cpp",
146     "lzma/CPP/Windows/PropVariantConv.cpp"
147   ],
148   "compiler_flags": [
149     "-DLZMASDKOBJC=1",
150     "-DLZMASDKOBJC_OMIT_UNUSED_CODE=1"
151   ],
152   "libraries": "c++"