- Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathDataCompression.podspec
More file actions
Latest commit
20 lines (17 loc) · 826 Bytes
/
Copy pathDataCompression.podspec
File metadata and controls
20 lines (17 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.newdo |s|
s.name="DataCompression"
s.version="3.9.0"
s.summary="Swift libcompression wrapper as an extension for the Data type (GZIP, ZLIB, LZFSE, LZMA, LZ4, deflate, RFC-1950, RFC-1951, RFC-1952)"
s.authors={"Markus Wanke"=>"mw99@users.noreply.github.com"}
s.homepage="https://github.com/mw99/DataCompression"
s.license={:type=>'Apache 2.0',:file=>'LICENSE'}
s.source={:git=>"https://github.com/mw99/DataCompression.git",:tag=>s.version}
s.swift_version='5'
s.ios.deployment_target='12.0'
s.osx.deployment_target='10.13'
s.tvos.deployment_target='12.0'
s.watchos.deployment_target='4.0'
s.visionos.deployment_target='1.0'
s.source_files='Sources/DataCompression/*.swift'
s.requires_arc=true
end