2015-07-12 12:30:14 +01:00
|
|
|
Pod::Spec.new do |s|
|
2015-09-29 22:42:30 -07:00
|
|
|
s.name = 'SSZipArchive'
|
2016-01-26 17:59:45 -08:00
|
|
|
s.version = '1.1'
|
2016-03-23 09:24:32 +01:00
|
|
|
s.summary = 'Utility class for zipping and unzipping files on iOS, tvOS, and Mac.'
|
|
|
|
|
s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS, tvOS, 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' }
|
|
|
|
|
s.author = { 'Sam Soffes' => 'sam@soff.es' }
|
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-01-27 09:38:00 -08:00
|
|
|
s.source_files = 'SSZipArchive/*.m', 'SSZipArchive/*.h', 'SSZipArchive/minizip/*', 'SSZipArchive/aes/*'
|
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'
|
|
|
|
|
s.requires_arc = true
|
|
|
|
|
end
|