forked from pocketsvg/PocketSVG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PocketSVG.podspec
23 lines (21 loc) · 1018 Bytes
/
PocketSVG.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "PocketSVG"
s.version = "2.4.0"
s.summary = "Easily convert your SVG files into CGPaths, CAShapeLayers, and UIBezierPaths"
s.homepage = "https://github.com/pocketsvg/PocketSVG"
s.authors = { "Ponderwell, Fjölnir Ásgeirsson, Ariel Elkin, and Contributors" => "https://github.com/pocketsvg/PocketSVG" }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.source = { :git => "https://github.com/pocketsvg/PocketSVG.git", :tag => s.version }
s.requires_arc = true
s.frameworks = 'QuartzCore'
s.library = 'xml2', 'stdc++'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.source_files = 'PocketSVG.{h,mm}', 'SVGBezierPath.{h,mm}', 'SVGEngine.{h,mm}', 'SVGImageView.{h,m}', 'SVGLayer.{h,m}', 'SVGPortability.h', 'SVGColors.plist'
s.ios.source_files = 'SVGImageView_iOS.h'
s.osx.source_files = 'SVGImageView_Mac.h'
end