-
Notifications
You must be signed in to change notification settings - Fork 0
/
FontIcons.podspec
75 lines (64 loc) · 2.56 KB
/
FontIcons.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
#
# Be sure to run `pod lib lint FontIcons.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "FontIcons"
s.version = "1.5.0"
s.summary = "Swift Font icon library"
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Universal library for Font icons. Default implementation for FontAwesome and Vaadin Icons.
Easy extensible to other fonts.
DESC
s.homepage = "https://github.com/marekmatula/FontIcons.Swift"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Marek Matula" => "marek.matula@gmail.com" }
s.source = { :git => "https://github.com/marekmatula/FontIcons.Swift.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '8.0'
s.requires_arc = true
# s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' }
s.subspec 'Core' do |core|
core.source_files = 'Pod/Classes/FontIcons.swift', 'Pod/Classes/Extensions.swift'
end
s.subspec 'FontAwesome' do |fa|
fa.dependency 'FontIcons/Core'
fa.source_files = 'Pod/Classes/FontAwesome.swift'
fa.resource_bundles = {
'FontAwesome' => ['Pod/Assets/FontAwesome.ttf']
}
end
s.subspec 'VaadinIcons' do |vi|
vi.dependency 'FontIcons/Core'
vi.source_files = 'Pod/Classes/VaadinIcons.swift'
vi.resource_bundles = {
'VaadinIcons' => ['Pod/Assets/Vaadin-Icons.ttf']
}
end
s.subspec 'MaterialDesign' do |md|
md.dependency 'FontIcons/Core'
md.source_files = 'Pod/Classes/MaterialDesignIcons.swift'
md.resource_bundles = {
'MaterialDesignIcons' => ['Pod/Assets/MaterialIcons-Regular.ttf']
}
end
s.subspec 'Ionicons' do |io|
io.dependency 'FontIcons/Core'
io.source_files = 'Pod/Classes/Ionicons.swift'
io.resource_bundles = {
'Ionicons' => ['Pod/Assets/ionicons.ttf']
}
end
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end