|
@@ -0,0 +1,27 @@
|
|
|
+Pod::Spec.new do |s|
|
|
|
+ s.name = 'SnapKit'
|
|
|
+ s.version = '5.7.2'
|
|
|
+ s.license = 'MIT'
|
|
|
+ s.summary = 'Harness the power of auto layout with a simplified, chainable, and compile time safe syntax.'
|
|
|
+ s.homepage = 'https://git.forgetive.org/XCAppCollection/SnapKit.git'
|
|
|
+ s.authors = { 'Robert Payne' => 'robertpayne@me.com' }
|
|
|
+ s.source = { :git => 'https://git.forgetive.org/XCAppCollection/SnapKit.git', :tag => '5.7.1' }
|
|
|
+
|
|
|
+ s.ios.deployment_target = '12.0'
|
|
|
+ s.osx.deployment_target = '10.13'
|
|
|
+ s.tvos.deployment_target = '12.0'
|
|
|
+
|
|
|
+ s.source_files = 'Sources/*.swift'
|
|
|
+
|
|
|
+ s.libraries = 'swiftCoreGraphics'
|
|
|
+
|
|
|
+ s.xcconfig = {
|
|
|
+ 'LIBRARY_SEARCH_PATHS' => '$(SDKROOT)/usr/lib/swift',
|
|
|
+ }
|
|
|
+
|
|
|
+ s.resource_bundles = {
|
|
|
+ 'SnapKitPrivacy' => ['Sources/PrivacyInfo.xcprivacy'],
|
|
|
+ }
|
|
|
+
|
|
|
+ s.swift_versions = ['5.0']
|
|
|
+end
|