-
-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathZIPFoundation.podspec
More file actions
20 lines (18 loc) · 800 Bytes
/
ZIPFoundation.podspec
File metadata and controls
20 lines (18 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'ZIPFoundation'
s.version = '0.9.20'
s.license = 'MIT'
s.summary = 'Effortless ZIP Handling in Swift'
s.homepage = 'https://github.com/weichsel/ZIPFoundation'
s.social_media_url = 'http://twitter.com/weichsel'
s.authors = { 'Thomas Zoechling' => 'thomas@peakstep.com' }
s.source = { :git => 'https://github.com/weichsel/ZIPFoundation.git', :tag => s.version }
s.swift_versions = ['4.0', '4.2', '5.0']
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '2.0'
s.visionos.deployment_target = '1.0'
s.source_files = 'Sources/ZIPFoundation/*.swift'
s.resource_bundles = {'ZIPFoundation_Privacy' => ['Sources/ZIPFoundation/Resources/PrivacyInfo.xcprivacy']}
end