Uh oh!
There was an error while loading. Please reload this page.
forked from SVGKit/SVGKit
- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSVGKit.podspec
More file actions
Latest commit
30 lines (29 loc) · 1.54 KB
/
Copy pathSVGKit.podspec
File metadata and controls
30 lines (29 loc) · 1.54 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
Pod::Spec.newdo |s|
s.name='SVGKit'
s.version='2.x'
s.license='MIT'
s.platform=:ios,'4.0'
s.summary="Display and interact with SVG Images on iOS, using native rendering (CoreAnimation)."
s.homepage='https://github.com/SVGKit/SVGKit'
s.author={'Steven Fusco'=>'github@stevenfusco.com',
'adamgit'=>'adam.m.s.martin@gmail.com',
'Kevin Stich'=>'stich@50cubes.com',
'Joshua May'=>'notjosh@gmail.com',
'Eric Man'=>'meric.au@gmail.com',
'Matt Rajca'=>'matt.rajca@me.com',
'Moritz Pfeiffer'=>'moritz.pfeiffer@alp-phone.ch',
'Steven Fusco'=>'sfusco@spiral.local',
'Eric Man'=>'Eric@eric-mans-macbook-2.local'}
s.source={:git=>'https://github.com/SVGKit/SVGKit.git',:branch=>"2.x"}
s.ios.source_files='Source/*{.h,m}','Source/DOM classes/**/*.{h,m}','Source/Exporters/*.{h,m}','Source/Parsers/**/*.{h,m}','Source/QuartzCore additions/**/*.{h,m}','Source/Sources/**/*.{h,m}','Source/UIKit additions/**/*.{h,m}','Source/Unsorted/**/*.{h,m}'
s.libraries='xml2'
s.framework='QuartzCore','CoreText'
s.dependency'CocoaLumberjack'
s.prefix_header_file='XCodeProjectData/SVGKit-iOS/SVGKit-iOS-Prefix.pch'
s.requires_arc=false
s.xcconfig={
'CLANG_CXX_LANGUAGE_STANDARD'=>'gnu++11',
'CLANG_CXX_LIBRARY'=>'libc++',
'HEADER_SEARCH_PATHS'=>'$(SDKROOT)/usr/include/libxml2'
}
end