2012-06-02 13:32:36 -07:00
|
|
|
Pod::Spec.new do |s|
|
2013-01-29 01:53:49 -05:00
|
|
|
s.name = 'SSZipArchive'
|
2015-04-23 13:02:56 +02:00
|
|
|
s.version = '0.3.2'
|
2013-01-29 01:53:49 -05:00
|
|
|
s.summary = 'Utility class for zipping and unzipping files on iOS and Mac.'
|
|
|
|
|
s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.'
|
|
|
|
|
s.homepage = 'https://github.com/soffes/ssziparchive'
|
2015-04-06 15:51:07 -04:00
|
|
|
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
|
2013-01-29 01:53:49 -05:00
|
|
|
s.author = { 'Sam Soffes' => 'sam@soff.es' }
|
2015-04-22 10:04:40 +02:00
|
|
|
s.source = { :git => 'https://github.com/soffes/ssziparchive.git', :tag => "v#{s.version}" }
|
2013-01-29 01:53:49 -05:00
|
|
|
s.ios.deployment_target = '4.0'
|
|
|
|
|
s.osx.deployment_target = '10.6'
|
2014-08-01 17:22:06 -04:00
|
|
|
s.source_files = 'SSZipArchive/*', 'SSZipArchive/minizip/*'
|
2013-09-09 09:04:04 -07:00
|
|
|
s.library = 'z'
|
2014-09-08 11:39:44 -07:00
|
|
|
s.requires_arc = true
|
2012-06-02 13:32:36 -07:00
|
|
|
end
|