26 lines
1.4 KiB
Ruby
26 lines
1.4 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SVGKit'
|
|
s.version = '0.0.1'
|
|
s.license = 'MIT'
|
|
s.summary = 'A Cocoa framework for rendering SVG files as Core Animation layers.'
|
|
s.homepage = 'https://github.com/SVGKit/SVGKit'
|
|
s.author = { 'Steven Fusco' => 'github@stevenfusco.com',
|
|
'adam' => 'git.sucks.this.email.doesnt.exist@mailinator.com',
|
|
'adamgit' => 'adam.m.s.martin@gmail.com',
|
|
'Kevin Stich' => 'stich@50cubes.com',
|
|
'Joshua May' => 'notjosh@gmail.com',
|
|
'Eric Man' => 'meric.au@gmail.com',
|
|
'adamgit' => 'git.sucks.this.email.doesnt.exist@mailinator.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', :commit => 'c18561e954c445fdc904f0c999a3d289ddd594f6' }
|
|
|
|
s.ios.source_files = 'Core/**/*.{h,m}', 'iOS/**/*.{h,m}'
|
|
s.osx.source_files = 'Core/**/*.{h,m}', 'Mac/**/*.{h,m}', 'iOS/CAShapeLayerWithHitTest.{h,m}', 'iOS/CALayerWithChildHitTest.{h,m}'
|
|
s.compiler_flags = '-Wno-format'
|
|
s.libraries = 'xml2'
|
|
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
|
|
end
|