-
Notifications
You must be signed in to change notification settings - Fork 21
/
WTGlyphFontSet.podspec
58 lines (55 loc) · 2.24 KB
/
WTGlyphFontSet.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
Pod::Spec.new do |s|
s.name = 'WTGlyphFontSet'
s.version = '0.6'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.summary = 'draw or create image using glyph webfont.'
s.homepage = 'http://www.waterworld.com.hk'
s.author = { 'waterlou' => 'https://github.com/waterlou' }
s.platform = :ios, '5.0'
s.requires_arc = true
s.source = { :git => 'https://github.com/waterlou/WTGlyphFontSet.git', :tag => '0.6' }
s.default_subspec = 'core'
s.subspec 'core' do |core|
core.source_files = 'WTGlyphFontSet/**/*.{h,m}'
core.frameworks = 'UIKit', 'CoreText'
end
s.subspec 'fontawesome' do |fontawesome|
fontawesome.resource = 'fontawesome/**/*.{ttf,otf,plist}'
end
s.subspec 'iconic_fill' do |iconic_fill|
iconic_fill.resource = 'iconic/**/iconic_fill.{ttf,otf,plist}'
end
s.subspec 'iconic_stroke' do |iconic_stroke|
iconic_stroke.resource = 'iconic/**/iconic_stroke.{ttf,otf,plist}'
end
s.subspec 'entypo' do |entypo|
entypo.resource = 'entypo/**/entypo.{ttf,otf,plist}'
end
s.subspec 'entypo-social' do |entypo_social|
entypo_social.resource = 'entypo/**/entypo-social.{ttf,otf,plist}'
end
s.subspec 'general_foundicons' do |general_foundicons|
general_foundicons.resource = 'foundation/**/general_foundicons.{ttf,otf,plist}'
end
s.subspec 'general_enclosed_foundicons' do |general_enclosed_foundicons|
general_enclosed_foundicons.resource = 'foundation/**/general_enclosed_foundicons.{ttf,otf,plist}'
end
s.subspec 'social_foundicons' do |social_foundicons|
social_foundicons.resource = 'foundation/**/social_foundicons.{ttf,otf,plist}'
end
s.subspec 'accessibility_foundicons' do |accessibility_foundicons|
accessibility_foundicons.resource = 'foundation/**/accessibility_foundicons.{ttf,otf,plist}'
end
s.subspec 'heydings_icons' do |heydings_icons|
heydings_icons.resource = 'heydings_icons/**/*.{ttf,otf,plist}'
end
s.subspec 'modernpics' do |modernpics|
modernpics.resource = 'modernpics/**/*.{ttf,otf,plist}'
end
s.subspec 'wpzoom' do |wpzoom|
wpzoom.resource = 'wpzoom/**/*.{ttf,otf,plist}'
end
s.subspec 'condense-c' do |condense|
condense.resource = 'condense-c/**/*.{ttf,otf,plist}'
end
end