-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathFontAwesomeIconFactory.podspec
35 lines (28 loc) · 1.22 KB
/
FontAwesomeIconFactory.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
Pod::Spec.new do |s|
s.name = "FontAwesomeIconFactory"
s.version = "3.0"
s.summary = "Create icons using the resolution-independent Font Awesome."
s.description = <<-DESC
A factory for turning Font Awesome pictograms into icon
images for user interface controls and buttons. Works for
iOS and OS X.
Font Awesome by Dave Gandy -
http://fortawesome.github.com/Font-Awesome
DESC
s.homepage = "https://nschum.github.com/FontAwesomeIconFactory/"
s.license = "OFL/MIT"
s.author = { "Nikolaj Schumacher" => "[email protected]" }
s.source = {
:git => "https://github.com/nschum/FontAwesomeIconFactory.git",
:tag => "3.0",
:submodules => "true"
}
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.7"
s.source_files = "FontAwesomeIconFactory/*.{h,m}"
s.ios.source_files = "FontAwesomeIconFactory/iOS/*.{h,m}"
s.osx.source_files = "FontAwesomeIconFactory/OSX/*.{h,m}"
s.resource = "Font-Awesome/fonts/FontAwesome.otf"
s.ios.frameworks = "CoreText", "CoreGraphics"
s.osx.frameworks = "CoreText", "CoreGraphics", "ApplicationServices"
end