SVGKit.podspec 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. Pod::Spec.new do |s|
  2. s.name = 'SVGKit'
  3. s.version = '2.1.0'
  4. s.license = 'MIT'
  5. s.osx.deployment_target = '10.9'
  6. s.ios.deployment_target = '5.0'
  7. s.tvos.deployment_target = '9.0'
  8. s.summary = "Display and interact with SVG Images on iOS, using native rendering (CoreAnimation)."
  9. s.homepage = 'https://github.com/SVGKit/SVGKit'
  10. s.author = { 'Steven Fusco' => 'github@stevenfusco.com',
  11. 'adamgit' => 'adam.m.s.martin@gmail.com',
  12. 'Kevin Stich' => 'stich@50cubes.com',
  13. 'Joshua May' => 'notjosh@gmail.com',
  14. 'Eric Man' => 'meric.au@gmail.com',
  15. 'Matt Rajca' => 'matt.rajca@me.com',
  16. 'Moritz Pfeiffer' => 'moritz.pfeiffer@alp-phone.ch' }
  17. s.source = { :git => 'https://github.com/SVGKit/SVGKit.git', :tag => s.version.to_s }
  18. s.source_files = 'Source/*.{h,m}', 'Source/**/*.{h,m}'
  19. s.ios.exclude_files = 'Source/AppKit additions/*.{h,m}', 'Source/Exporters/SVGKExporterNSImage.{h,m}'
  20. s.tvos.exclude_files = 'Source/AppKit additions/*.{h,m}', 'Source/Exporters/SVGKExporterNSImage.{h,m}'
  21. s.osx.exclude_files = 'Source/Exporters/SVGKExporterUIImage.{h,m}'
  22. s.libraries = 'xml2'
  23. s.framework = 'QuartzCore', 'CoreText'
  24. s.dependency 'CocoaLumberjack', '~> 3.0'
  25. s.prefix_header_file = 'SVGKitLibrary/SVGKit-iOS/SVGKit-Prefix.pch'
  26. s.module_map = 'SVGKitLibrary/SVGKit-iOS/SVGKit.modulemap'
  27. s.requires_arc = true
  28. s.pod_target_xcconfig = {
  29. 'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++11',
  30. 'CLANG_CXX_LIBRARY' => 'libc++',
  31. 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'
  32. }
  33. end