SnapKit.podspec 741 B

123456789101112131415161718192021222324
  1. Pod::Spec.new do |s|
  2. s.name = 'SnapKit'
  3. s.version = '5.6.0'
  4. s.license = 'MIT'
  5. s.summary = 'Harness the power of auto layout with a simplified, chainable, and compile time safe syntax.'
  6. s.homepage = 'https://github.com/SnapKit/SnapKit'
  7. s.authors = { 'Robert Payne' => 'robertpayne@me.com' }
  8. s.social_media_url = 'http://twitter.com/robertjpayne'
  9. s.source = { :git => 'https://github.com/SnapKit/SnapKit.git', :tag => '5.6.0' }
  10. s.ios.deployment_target = '10.0'
  11. s.osx.deployment_target = '10.11'
  12. s.tvos.deployment_target = '10.0'
  13. s.source_files = 'Sources/*.swift'
  14. s.libraries = 'swiftCoreGraphics'
  15. s.xcconfig = {
  16. 'LIBRARY_SEARCH_PATHS' => '$(SDKROOT)/usr/lib/swift',
  17. }
  18. s.swift_versions = ['5.0']
  19. end