-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSwiftImageReadWrite.podspec
30 lines (23 loc) · 1.23 KB
/
SwiftImageReadWrite.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = 'SwiftImageReadWrite'
s.version = '1.9.2'
s.summary = 'A basic microframework of routines for doing basic importing/exporting of `CGImage` and `NSImage`/`UIImage` type images.'
s.homepage = 'https://github.com/dagronf/SwiftImageReadWrite'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Darren Ford' => '[email protected]' }
s.source = { :git => 'https://github.com/dagronf/SwiftImageReadWrite.git', :tag => s.version.to_s }
s.module_name = 'SwiftImageReadWrite'
s.osx.deployment_target = '10.11'
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.osx.framework = 'AppKit'
s.ios.framework = 'UIKit'
s.tvos.framework = 'UIKit'
s.watchos.framework = 'UIKit'
s.source_files = 'Sources/SwiftImageReadWrite/**/*.swift'
s.resource_bundles = {
'SwiftImageReadWrite' => 'Sources/SwiftImageReadWrite/PrivacyInfo.xcprivacy'
}
s.swift_versions = ['5.4', '5.5', '5.6', '5.7', '5.8', '5.9', '5.10']
end