123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "SVGKit",
- "version": "3.1.0",
- "license": "MIT",
- "platforms": {
- "osx": "10.9",
- "ios": "5.0",
- "tvos": "9.0"
- },
- "summary": "Display and interact with SVG Images on iOS, using native rendering (CoreAnimation).",
- "homepage": "https://github.com/SVGKit/SVGKit",
- "authors": {
- "Steven Fusco": "github@stevenfusco.com",
- "adamgit": "adam.m.s.martin@gmail.com",
- "Kevin Stich": "stich@50cubes.com",
- "Joshua May": "notjosh@gmail.com",
- "Eric Man": "meric.au@gmail.com",
- "Matt Rajca": "matt.rajca@me.com",
- "Moritz Pfeiffer": "moritz.pfeiffer@alp-phone.ch"
- },
- "source": {
- "git": "https://github.com/SVGKit/SVGKit.git",
- "tag": "3.1.0"
- },
- "source_files": [
- "Source/*.{h,m}",
- "Source/**/*.{h,m}"
- ],
- "exclude_files": "Source/include/*.h",
- "private_header_files": "Source/SVGKDefine_Private.h",
- "ios": {
- "private_header_files": [
- "Source/AppKit additions/SVGKImageRep.h",
- "Source/Exporters/SVGKExporterNSImage.h"
- ]
- },
- "tvos": {
- "private_header_files": [
- "Source/AppKit additions/SVGKImageRep.h",
- "Source/Exporters/SVGKExporterNSImage.h"
- ]
- },
- "osx": {
- "private_header_files": "Source/Exporters/SVGKExporterUIImage.h"
- },
- "libraries": "xml2",
- "frameworks": [
- "QuartzCore",
- "CoreText"
- ],
- "dependencies": {
- "CocoaLumberjack": [
- "~> 3.0"
- ]
- },
- "module_map": "SVGKitLibrary/SVGKit-iOS/SVGKit.modulemap",
- "requires_arc": true,
- "pod_target_xcconfig": {
- "CLANG_CXX_LANGUAGE_STANDARD": "gnu++11",
- "CLANG_CXX_LIBRARY": "libc++",
- "HEADER_SEARCH_PATHS": "$(SDKROOT)/usr/include/libxml2"
- }
- }
|