forked from leonbreedt/FavIcon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFavIcon.podspec
More file actions
28 lines (23 loc) · 815 Bytes
/
Copy pathFavIcon.podspec
File metadata and controls
28 lines (23 loc) · 815 Bytes
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
Pod::Spec.new do |s|
s.name = 'FavIcon'
s.version = '3.1.0'
s.summary = 'A library for downloading website icons'
s.homepage = 'https://github.com/leonbreedt/FavIcon'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = { 'Leon Breedt' => 'leon@sector42.io' }
s.source = {
:git => "https://github.com/leonbreedt/FavIcon.git",
:tag => "#{s.version}"
}
s.source_files = 'Sources/**/*.swift'
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.requires_arc = true
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '5.0',
'SWIFT_WHOLE_MODULE_OPTIMIZATION' => 'YES',
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2',
}
end