[Add] DSPSDK 1.0.1.8
[CocoaPods.git] / Specs / 0 / 1 / 6 / HC-Objective-Zip / 2.0 / HC-Objective-Zip.podspec.json
blob922e1004c50f5d74b98c747740c3852bdc4c9f54
2   "name": "HC-Objective-Zip",
3   "version": "2.0",
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/hexiaochong/Objective-Zip-HC",
7   "license": {
8     "type": "BSD 2.0",
9     "file": "LICENSE.md"
10   },
11   "authors": {
12     "Gianluca Bertani": "gianluca.bertani@email.it"
13   },
14   "social_media_url": "https://twitter.com/self_vs_this",
15   "platforms": {
16     "ios": "8.0",
17     "osx": "10.7"
18   },
19   "source": {
20     "git": "https://github.com/hexiaochong/Objective-Zip-HC.git",
21     "tag": "2.0"
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     "MiniZip/zip.h",
47     "MiniZip/ioapi.h",
48     "Objective-Zip/CSIIMADPunzip.h"
49   ],
50   "requires_arc": true,
51   "xcconfig": {
52     "OTHER_LDFLAGS": "-ObjC",
53     "GCC_WARN_UNUSED_FUNCTION": "NO"
54   }