forked from home-assistant/Iconic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIconic.podspec
More file actions
39 lines (30 loc) · 1.24 KB
/
Iconic.podspec
File metadata and controls
39 lines (30 loc) · 1.24 KB
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
@version = '1.2'
Pod::Spec.new do |s|
s.name = 'Iconic'
s.version = @version
s.summary = 'Auto-generated icon font library for iOS [beta]'
s.description = 'Iconic will help you make icon fonts integration on iOS easy and effortless. Its main component is in charge of auto-generating strongly typed code in Swift, fully compatible with Objective-C, allowing the integration of vector icons as image or text in your apps.'
s.homepage = 'https://github.com/dzenbot/Iconic'
s.screenshots = ''
s.author = { 'Ignacio Romero Zurbuchen' => 'iromero@dzen.cl' }
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.source = {
:git => 'https://github.com/dzenbot/Iconic.git',
:tag => @version
}
s.source_files = 'Source/*.{swift}'
s.resources = 'Source/**/*.{ttf,otf}'
s.preserve_paths = 'Source/Catalog/**/*.*'
s.framework = 'UIKit', 'CoreText'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.pod_target_xcconfig = {
'ENABLE_BITCODE' => 'NO',
'SWIFT_VERSION' => '3.0',
}
s.prepare_command = "sh Source/Iconizer.sh '#{ENV['FONT_PATH']}' --verbose"
end