forked from pinterest/PINRemoteImage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PINRemoteImage.podspec
78 lines (67 loc) · 2.71 KB
/
PINRemoteImage.podspec
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#
# Be sure to run `pod lib lint PINRemoteImage.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "PINRemoteImage"
s.version = "3.0.0-beta.3"
s.summary = "A thread safe, performant, feature rich image fetcher"
s.homepage = "https://github.com/pinterest/PINRemoteImage"
s.license = 'Apache 2.0'
s.author = { "Garrett Moon" => "[email protected]" }
s.source = { :git => "https://github.com/pinterest/PINRemoteImage.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/garrettmoon'
s.ios.deployment_target = "7.0"
s.tvos.deployment_target = "9.0"
s.requires_arc = true
# Include optional FLAnimatedImage module
s.default_subspecs = 'FLAnimatedImage','PINCache'
### Subspecs
s.subspec 'Core' do |cs|
cs.ios.deployment_target = "7.0"
cs.tvos.deployment_target = "9.0"
cs.osx.deployment_target = "10.9"
cs.source_files = 'Pod/Classes/**/*.{h,m}'
cs.exclude_files = 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h', 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m','Pod/Classes/PINCache/**/*.{h,m}'
cs.public_header_files = 'Pod/Classes/**/*.h'
cs.frameworks = 'ImageIO', 'Accelerate'
end
s.subspec 'iOS' do |ios|
ios.ios.deployment_target = "7.0"
ios.tvos.deployment_target = "9.0"
ios.dependency 'PINRemoteImage/Core'
ios.frameworks = 'UIKit'
end
s.subspec 'OSX' do |cs|
cs.osx.deployment_target = "10.9"
cs.dependency 'PINRemoteImage/Core'
cs.frameworks = 'Cocoa', 'CoreServices'
end
# The tvOS spec is no longer necessary, iOS should be used instead.
s.subspec 'tvOS' do |tvos|
tvos.dependency 'PINRemoteImage/iOS'
end
s.subspec "FLAnimatedImage" do |fs|
fs.platforms = "ios"
fs.dependency 'PINRemoteImage/Core'
fs.source_files = 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h', 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m'
fs.dependency 'FLAnimatedImage', '>= 1.0'
end
s.subspec 'WebP' do |webp|
webp.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) PIN_WEBP=1',
'USER_HEADER_SEARCH_PATHS' => '$(inherited) $(SRCROOT)/libwebp/src'
}
webp.dependency 'PINRemoteImage/Core'
webp.dependency 'libwebp'
end
s.subspec "PINCache" do |pc|
pc.dependency 'PINRemoteImage/Core'
pc.dependency 'PINCache', '>=3.0.1-beta'
pc.source_files = 'Pod/Classes/PINCache/**/*.{h,m}'
end
end