2015-07-12 12:30:14 +01:00
|
|
|
Pod::Spec.new do |s|
|
2015-09-29 22:42:30 -07:00
|
|
|
s.name = 'SSZipArchive'
|
2017-09-30 10:32:35 +08:00
|
|
|
s.version = '2.0.8'
|
2016-04-05 22:57:26 -05:00
|
|
|
s.summary = 'Utility class for zipping and unzipping files on iOS, tvOS, watchOS, and Mac.'
|
|
|
|
|
s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS, tvOS, watchOS, and Mac.'
|
2015-11-24 10:31:51 -08:00
|
|
|
s.homepage = 'https://github.com/ZipArchive/ZipArchive'
|
2015-07-12 12:30:14 +01:00
|
|
|
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
|
2017-09-09 17:04:42 +08:00
|
|
|
s.authors = { 'Sam Soffes' => 'sam@soff.es', 'Joshua Hudson' => nil, 'Antoine Cœur' => nil }
|
2015-11-24 10:31:51 -08:00
|
|
|
s.source = { :git => 'https://github.com/ZipArchive/ZipArchive.git', :tag => "v#{s.version}" }
|
2015-07-12 12:30:14 +01:00
|
|
|
s.ios.deployment_target = '4.0'
|
2016-03-23 09:24:32 +01:00
|
|
|
s.tvos.deployment_target = '9.0'
|
2015-07-12 12:30:14 +01:00
|
|
|
s.osx.deployment_target = '10.6'
|
2016-04-05 22:25:05 -05:00
|
|
|
s.watchos.deployment_target = '2.0'
|
2017-06-25 23:06:17 +08:00
|
|
|
s.source_files = 'SSZipArchive/*.{m,h}', 'SSZipArchive/minizip/*.{c,h}', 'SSZipArchive/minizip/aes/*.{c,h}'
|
2015-10-23 14:15:31 -04:00
|
|
|
s.public_header_files = 'SSZipArchive/*.h'
|
2015-07-12 12:30:14 +01:00
|
|
|
s.library = 'z'
|
|
|
|
|
end
|