[Deprecate] CHAT360IOS_SDK 1.0.8
[CocoaPods.git] / Specs / 1 / 0 / 2 / objc-zip / 1.0.1 / objc-zip.podspec.json
blob76ffc19173c4b274d1647e1e9800cf24c9773bd5
2   "name": "objc-zip",
3   "version": "1.0.1",
4   "summary": "An object-oriented friendly wrapper library for ZLib and MiniZip, in Objective-C for iOS and OS X",
5   "description": "Objective-Zip is a small Objective-C library that wraps ZLib and\nMiniZip in an object-oriented friendly way. It supports:\n\n* Zipping and unzipping of common zip file formats.\n* Multi-GB zip files thanks to 64-bit APIs, even with limited memory available.\n* Per-file compression level and encryption.\n\nObjective-Zip includes sources of latest versions of ZLib and MiniZip.",
6   "homepage": "https://github.com/eziochiu/objc-zip.git",
7   "license": {
8     "type": "MIT License",
9     "file": "LICENSE.md"
10   },
11   "authors": {
12     "Ezio Chiu": "eziochiuchina@hotmail.com"
13   },
14   "social_media_url": "https://twitter.com/@e0mher",
15   "platforms": {
16     "ios": "8.0",
17     "osx": "10.7"
18   },
19   "source": {
20     "git": "https://github.com/eziochiu/objc-zip.git",
21     "tag": "1.0.1"
22   },
23   "source_files": [
24     "Objective-Zip/**/*.{h,m}",
25     "MiniZip/**/*.{h,c}",
26     "ZLib/**/*.{h,c}"
27   ],
28   "public_header_files": [
29     "Objective-Zip/OZZipFile.h",
30     "Objective-Zip/OZZipFile+Standard.h",
31     "Objective-Zip/OZZipFile+NSError.h",
32     "Objective-Zip/OZZipFileMode.h",
33     "Objective-Zip/OZZipCompressionLevel.h",
34     "Objective-Zip/OZZipException.h",
35     "Objective-Zip/OZZipWriteStream.h",
36     "Objective-Zip/OZZipWriteStream+Standard.h",
37     "Objective-Zip/OZZipWriteStream+NSError.h",
38     "Objective-Zip/OZZipReadStream.h",
39     "Objective-Zip/OZZipReadStream+Standard.h",
40     "Objective-Zip/OZZipReadStream+NSError.h",
41     "Objective-Zip/OZFileInZipInfo.h",
42     "Objective-Zip/Objective-Zip.h",
43     "Objective-Zip/Objective-Zip+NSError.h",
44     "Objective-Zip/NSDate+DOSDate.h",
45     "Objective-Zip/NSData+CRC32.h"
46   ],
47   "requires_arc": true,
48   "xcconfig": {
49     "OTHER_LDFLAGS": "-ObjC"
50   }