-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathAwesomeEnum.podspec
38 lines (32 loc) · 1.57 KB
/
AwesomeEnum.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
#
# Be sure to run `pod lib lint Awesome.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 = 'AwesomeEnum'
s.version = '2.2.2'
s.summary = 'Swift implementation of Font Awesome 5 and Font Awesome 5 Pro!'
s.swift_version = '5.0'
s.description = 'Swift implementation of Font Awesome 5 and Font Awesome 5 Pro allows you to implement this amazing web font on iOS, tvOS and macOS devices easily!'
s.homepage = 'https://github.com/LiveUI/Awesome'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ondrej Rafaj' => 'opensource@mangoweb.cz' }
s.source = { :git => 'https://github.com/LiveUI/Awesome.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/rafiki270'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.watchos.deployment_target = '2.0'
s.source_files = 'Classes/**/*'
s.resource_bundles = {
'Awesome' => ['Assets/*.ttf']
}
s.ios.frameworks = 'UIKit', 'CoreText', 'CoreGraphics'
s.tvos.frameworks = 'UIKit', 'CoreText', 'CoreGraphics'
s.osx.frameworks = 'Cocoa', 'CoreText', 'CoreGraphics'
s.watchos.frameworks = 'UIKit', 'CoreText', 'CoreGraphics'
end