forked from GenerallyHelpfulSoftware/SVGgh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSVGgh.podspec
More file actions
21 lines (17 loc) · 704 Bytes
/
SVGgh.podspec
File metadata and controls
21 lines (17 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'SVGgh'
s.version = '1.7.1'
s.license = 'MIT'
s.tvos.deployment_target = '9.0'
s.ios.deployment_target = '8.0'
s.summary = "SVG Rendering Library for iOS"
s.homepage = 'https://github.com/GenerallyHelpfulSoftware/SVGgh'
s.author = { 'Glenn R. Howes' => 'glenn@genhelp.com' }
s.source = { :git => 'https://github.com/GenerallyHelpfulSoftware/SVGgh.git', :tag => "v1.7.1" }
s.ios.source_files = 'SVGgh/**/*{.h,m}'
s.tvos.source_files = 'SVGgh/**/*{.h,m}'
s.framework = 'CoreGraphics', 'CoreImage', 'CoreText', 'UIKit', 'Foundation', 'MobileCoreServices'
s.libraries = 'z'
s.prefix_header_file = 'SVGgh/SVGgh-Prefix.pch'
s.requires_arc = true
end