forked from SVGKit/SVGKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SVGKit.podspec
31 lines (30 loc) · 1.58 KB
/
SVGKit.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
Pod::Spec.new do |s|
s.name = 'SVGKit'
s.version = '2.0.1'
s.license = 'MIT'
s.platform = :ios, '5.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' => '[email protected]',
'adamgit' => '[email protected]',
'Kevin Stich' => '[email protected]',
'Joshua May' => '[email protected]',
'Eric Man' => '[email protected]',
'Matt Rajca' => '[email protected]',
'Moritz Pfeiffer' => '[email protected]',
'Steven Fusco' => '[email protected]',
'Eric Man' => '[email protected]' }
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.tvos.deployment_target = '9.0'
s.libraries = 'xml2'
s.framework = 'QuartzCore', 'CoreText'
s.dependency 'CocoaLumberjack', '~> 2.x'
s.prefix_header_file = 'SVGKitLibrary/SVGKit-iOS/SVGKit-iOS-Prefix.pch'
s.requires_arc = true
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++11',
'CLANG_CXX_LIBRARY' => 'libc++',
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'
}
end