YYImage.podspec 872 B

123456789101112131415161718192021
  1. Pod::Spec.new do |s|
  2. s.name = 'YYImage'
  3. s.summary = 'Image framework for iOS to display/encode/decode animated WebP, APNG, GIF, and more.'
  4. s.version = '0.8.9'
  5. s.license = { :type => 'MIT', :file => 'LICENSE' }
  6. s.authors = { 'ibireme' => 'ibireme@gmail.com' }
  7. s.social_media_url = 'http://blog.ibireme.com'
  8. s.homepage = 'https://github.com/ibireme/YYImage'
  9. s.platform = :ios, '6.0'
  10. s.ios.deployment_target = '6.0'
  11. s.source = { :git => 'https://github.com/ibireme/YYImage.git', :tag => s.version.to_s }
  12. s.requires_arc = true
  13. s.source_files = 'YYImage/*.{h,m}'
  14. s.public_header_files = 'YYImage/*.{h}'
  15. s.libraries = 'z'
  16. s.frameworks = 'UIKit', 'CoreFoundation', 'QuartzCore', 'AssetsLibrary', 'ImageIO', 'Accelerate', 'MobileCoreServices'
  17. s.ios.vendored_frameworks = 'Vendor/WebP.framework'
  18. end