[Delete] TapjoySDK 14.2.0
[CocoaPods.git] / Specs / 1 / d / c / LzmaSDK-ObjC / 1.1.5 / LzmaSDK-ObjC.podspec.json
blobb1f5514ac90bebab831afe07f714cccf63220471
2   "name": "LzmaSDK-ObjC",
3   "version": "1.1.5",
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 16.02 (1602 - 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",
7   "license": "MIT",
8   "authors": {
9     "OlehKulykov": "info@resident.name"
10   },
11   "source": {
12     "git": "https://github.com/OlehKulykov/LzmaSDKObjC.git",
13     "tag": "1.1.5"
14   },
15   "platforms": {
16     "ios": "8.0",
17     "osx": "10.7"
18   },
19   "requires_arc": true,
20   "public_header_files": [
21     "src/LzmaSDKObjCTypes.h",
22     "src/LzmaSDKObjCReader.h",
23     "src/LzmaSDKObjCItem.h",
24     "src/LzmaSDKObjCBufferProcessor.h",
25     "src/LzmaSDKObjC.h"
26   ],
27   "source_files": [
28     "src/*.{h,cpp,mm}",
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",
108     "lzma/C/*.{h}",
109     "lzma/C/AesOpt.c",
110     "lzma/C/Aes.c",
111     "lzma/C/XzCrc64Opt.c",
112     "lzma/C/Sha256.c",
113     "lzma/C/Delta.c",
114     "lzma/C/7zCrcOpt.c",
115     "lzma/C/CpuArch.c",
116     "lzma/C/7zCrc.c",
117     "lzma/C/XzCrc64.c",
118     "lzma/C/Bra86.c",
119     "lzma/C/BraIA64.c",
120     "lzma/C/Bra.c",
121     "lzma/C/XzEnc.c",
122     "lzma/C/XzIn.c",
123     "lzma/C/Xz.c",
124     "lzma/C/XzDec.c",
125     "lzma/C/7zStream.c",
126     "lzma/C/Alloc.c",
127     "lzma/C/MtCoder.c",
128     "lzma/C/LzFind.c",
129     "lzma/C/LzFindMt.c",
130     "lzma/C/Lzma2Dec.c",
131     "lzma/C/Lzma2Enc.c",
132     "lzma/C/LzmaDec.c",
133     "lzma/C/LzmaEnc.c",
134     "lzma/C/Threads.c"
135   ],
136   "compiler_flags": [
137     "-DLZMASDKOBJC=1",
138     "-DLZMASDKOBJC_OMIT_UNUSED_CODE=1"
139   ],
140   "libraries": "stdc++",
141   "dependencies": {
142     "Inlineobjc": [
144     ]
145   }