-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBitmap.podspec
32 lines (24 loc) · 1.15 KB
/
Bitmap.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
31
32
Pod::Spec.new do |s|
s.name = 'Bitmap'
s.version = '1.4.0'
s.summary = 'A Swift-y convenience for loading, saving and manipulating bitmap images.'
s.homepage = 'https://github.com/dagronf/Bitmap'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Darren Ford' => 'dford_au-reg@yahoo.com' }
s.source = { :git => 'https://github.com/dagronf/Bitmap.git', :tag => s.version.to_s }
s.dependency 'SwiftImageReadWrite', '~> 1.9.2'
s.module_name = 'Bitmap'
s.osx.deployment_target = '10.11'
s.ios.deployment_target = '13.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/Bitmap/**/*.swift'
s.resource_bundles = {
'Bitmap' => 'Sources/Bitmap/PrivacyInfo.xcprivacy'
}
s.swift_versions = ['5.4', '5.5', '5.6', '5.7', '5.8', '5.9', '5.10']
end