SVGKit.podspec.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "SVGKit",
  3. "version": "3.1.0",
  4. "license": "MIT",
  5. "platforms": {
  6. "osx": "10.9",
  7. "ios": "5.0",
  8. "tvos": "9.0"
  9. },
  10. "summary": "Display and interact with SVG Images on iOS, using native rendering (CoreAnimation).",
  11. "homepage": "https://github.com/SVGKit/SVGKit",
  12. "authors": {
  13. "Steven Fusco": "github@stevenfusco.com",
  14. "adamgit": "adam.m.s.martin@gmail.com",
  15. "Kevin Stich": "stich@50cubes.com",
  16. "Joshua May": "notjosh@gmail.com",
  17. "Eric Man": "meric.au@gmail.com",
  18. "Matt Rajca": "matt.rajca@me.com",
  19. "Moritz Pfeiffer": "moritz.pfeiffer@alp-phone.ch"
  20. },
  21. "source": {
  22. "git": "https://github.com/SVGKit/SVGKit.git",
  23. "tag": "3.1.0"
  24. },
  25. "source_files": [
  26. "Source/*.{h,m}",
  27. "Source/**/*.{h,m}"
  28. ],
  29. "exclude_files": "Source/include/*.h",
  30. "private_header_files": "Source/SVGKDefine_Private.h",
  31. "ios": {
  32. "private_header_files": [
  33. "Source/AppKit additions/SVGKImageRep.h",
  34. "Source/Exporters/SVGKExporterNSImage.h"
  35. ]
  36. },
  37. "tvos": {
  38. "private_header_files": [
  39. "Source/AppKit additions/SVGKImageRep.h",
  40. "Source/Exporters/SVGKExporterNSImage.h"
  41. ]
  42. },
  43. "osx": {
  44. "private_header_files": "Source/Exporters/SVGKExporterUIImage.h"
  45. },
  46. "libraries": "xml2",
  47. "frameworks": [
  48. "QuartzCore",
  49. "CoreText"
  50. ],
  51. "dependencies": {
  52. "CocoaLumberjack": [
  53. "~> 3.0"
  54. ]
  55. },
  56. "module_map": "SVGKitLibrary/SVGKit-iOS/SVGKit.modulemap",
  57. "requires_arc": true,
  58. "pod_target_xcconfig": {
  59. "CLANG_CXX_LANGUAGE_STANDARD": "gnu++11",
  60. "CLANG_CXX_LIBRARY": "libc++",
  61. "HEADER_SEARCH_PATHS": "$(SDKROOT)/usr/include/libxml2"
  62. }
  63. }