2015-01-08 14:40:02 +08:00
|
|
|
Pod::Spec.new do |s|
|
2015-04-15 19:07:50 +08:00
|
|
|
s.name = 'SnapKit'
|
2023-12-31 16:50:38 +08:00
|
|
|
s.version = '5.7.0'
|
2015-01-08 14:40:02 +08:00
|
|
|
s.license = 'MIT'
|
|
|
|
s.summary = 'Harness the power of auto layout with a simplified, chainable, and compile time safe syntax.'
|
2015-04-15 19:07:50 +08:00
|
|
|
s.homepage = 'https://github.com/SnapKit/SnapKit'
|
2015-01-08 14:40:02 +08:00
|
|
|
s.authors = { 'Robert Payne' => 'robertpayne@me.com' }
|
|
|
|
s.social_media_url = 'http://twitter.com/robertjpayne'
|
2023-12-31 16:50:38 +08:00
|
|
|
s.source = { :git => 'https://github.com/SnapKit/SnapKit.git', :tag => '5.7.0' }
|
2015-01-08 14:40:02 +08:00
|
|
|
|
2023-12-31 16:50:38 +08:00
|
|
|
s.ios.deployment_target = '12.0'
|
|
|
|
s.osx.deployment_target = '10.13'
|
|
|
|
s.tvos.deployment_target = '12.0'
|
2016-01-21 06:19:01 +08:00
|
|
|
|
2022-04-13 12:06:06 +08:00
|
|
|
s.source_files = 'Sources/*.swift'
|
2015-01-09 04:57:24 +08:00
|
|
|
|
2022-11-01 11:16:22 +08:00
|
|
|
s.libraries = 'swiftCoreGraphics'
|
|
|
|
|
|
|
|
s.xcconfig = {
|
|
|
|
'LIBRARY_SEARCH_PATHS' => '$(SDKROOT)/usr/lib/swift',
|
|
|
|
}
|
|
|
|
|
2024-02-13 11:33:01 +08:00
|
|
|
s.resource_bundles = {
|
|
|
|
'SnapKit_Privacy' => ['Sources/PrivacyInfo.xcprivacy'],
|
|
|
|
}
|
|
|
|
|
2022-04-13 12:12:28 +08:00
|
|
|
s.swift_versions = ['5.0']
|
2015-10-14 21:38:13 +08:00
|
|
|
end
|