[Add] RegulaCommonStage 7.5.928
[CocoaPods.git] / Specs / 0 / f / d / SCHTTPClient / 1.0.1 / SCHTTPClient.podspec.json
blob390083634cf700a3f1732486c65e0777df320475
2   "name": "SCHTTPClient",
3   "version": "1.0.1",
4   "summary": "A modern HTTP client framework for iOS/OSX built on top of libcurl.",
5   "homepage": "https://github.com/debugly/SCHTTPClient.git",
6   "license": {
7     "type": "Apache License, Version 2.0",
8     "file": "LICENSE"
9   },
10   "authors": {
11     "debugly": "qianlongxu@gmail.com"
12   },
13   "source": {
14     "git": "https://github.com/debugly/SCHTTPClient.git",
15     "tag": "1.0.1"
16   },
17   "requires_arc": true,
18   "platforms": {
19     "ios": "8.0",
20     "osx": "10.10"
21   },
22   "ios": {
23     "preserve_paths": "External/libcurl.iOS"
24   },
25   "osx": {
26     "preserve_paths": "External/libcurl.OSX"
27   },
28   "subspecs": [
29     {
30       "name": "LibCurl",
31       "ios": {
32         "source_files": "External/libcurl.iOS/*.h",
33         "vendored_libraries": "External/libcurl.iOS/libcurl.iOS.a"
34       },
35       "osx": {
36         "source_files": "External/libcurl.OSX/*.h",
37         "vendored_libraries": [
38           "External/libcurl.OSX/libcrypto_Mac.a",
39           "External/libcurl.OSX/libcurl_Mac.a",
40           "External/libcurl.OSX/libnghttp2_Mac.a",
41           "External/libcurl.OSX/libssl_Mac.a"
42         ]
43       }
44     },
45     {
46       "name": "Client",
47       "source_files": "SCHTTPClient/**/*.{h,m}",
48       "libraries": "z",
49       "frameworks": [
50         "Security"
51       ],
52       "ios": {
53         "frameworks": [
54           "MobileCoreServices",
55           "UIKit"
56         ]
57       },
58       "osx": {
59         "frameworks": [
60           "CoreServices",
61           "AppKit"
62         ]
63       },
64       "dependencies": {
65         "SCHTTPClient/LibCurl": [
67         ]
68       },
69       "private_header_files": "SCHTTPClient/Internal/*.h",
70       "prefix_header_contents": "#import <Availability.h>\n\n#if __IPHONE_OS_VERSION_MIN_REQUIRED\n    #import <MobileCoreServices/MobileCoreServices.h>\n#else\n    #import <CoreServices/CoreServices.h>\n#endif"
71     }
72   ]