This repository was archived by the owner on Oct 25, 2022. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathBBHTTP.podspec
More file actions
Latest commit
40 lines (35 loc) · 1.42 KB
/
Copy pathBBHTTP.podspec
File metadata and controls
40 lines (35 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Pod::Spec.newdo |s|
s.name="BBHTTP"
s.version="0.9.9"
s.summary="A modern HTTP client framework for iOS/OSX built on top of libcurl."
s.homepage="https://github.com/brunodecarvalho/BBHTTP"
s.license={:type=>"Apache License, Version 2.0",:file=>"LICENSE"}
s.author={"Bruno de Carvalho"=>"bruno@biasedbit.com"}
s.source={:git=>"https://github.com/brunodecarvalho/BBHTTP.git",:tag=>"0.9.9"}
s.requires_arc=true
s.source_files="BBHTTP/**/*.{h,m}"
s.ios.deployment_target="5.0"
s.ios.preserve_paths="External/libcurl.iOS"
s.ios.frameworks=%w{MobileCoreServicesSecurityUIKit}
s.ios.libraries=%w{zcurl.iOS.dev}
s.ios.xcconfig={
"HEADER_SEARCH_PATHS"=>'"${PODS_ROOT}/BBHTTP/External/libcurl.iOS"',
"LIBRARY_SEARCH_PATHS"=>'"${PODS_ROOT}/BBHTTP/External/libcurl.iOS"'
}
s.osx.deployment_target="10.7"
s.osx.preserve_paths="External/libcurl.OSX"
s.osx.frameworks=%w{SecurityCoreServicesAppKit}
s.osx.libraries=%w{zcurl.OSX}
s.osx.xcconfig={
"HEADER_SEARCH_PATHS"=>'"${PODS_ROOT}/BBHTTP/External/libcurl.OSX"',
"LIBRARY_SEARCH_PATHS"=>'"${PODS_ROOT}/BBHTTP/External/libcurl.OSX"'
}
s.prefix_header_contents=<<-PREFIXHEADER
#import <Availability.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <MobileCoreServices/MobileCoreServices.h>
#else
#import <CoreServices/CoreServices.h>
#endif
PREFIXHEADER
end