-
-
Notifications
You must be signed in to change notification settings - Fork 261
Expand file tree
/
Copy pathFontAwesome.swift.podspec
More file actions
18 lines (16 loc) · 754 Bytes
/
FontAwesome.swift.podspec
File metadata and controls
18 lines (16 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "FontAwesome.swift"
s.version = "1.9.1"
s.summary = "Use Font Awesome in your Swift projects"
s.homepage = "https://github.com/thii/FontAwesome.swift"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Thi Doan" => "t@thi.im" }
s.source = { :git => "https://github.com/thii/FontAwesome.swift.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'Sources/FontAwesome/*.{swift}'
s.resource_bundle = { 'FontAwesome.swift' => 'Sources/FontAwesome/Resources/Fonts/*.otf' }
s.frameworks = 'UIKit', 'CoreText'
s.swift_version = "5.0"
end