Files
ZipArchive/SSZipArchive.podspec
T

16 lines
766 B
Ruby
Raw Normal View History

2012-06-02 13:32:36 -07:00
Pod::Spec.new do |s|
2013-01-29 01:53:49 -05:00
s.name = 'SSZipArchive'
2013-09-07 08:52:49 -07:00
s.version = '0.3.0'
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'
2012-06-02 13:32:36 -07:00
s.license = { :type => 'MIT', :file => 'LICENSE' }
2013-01-29 01:53:49 -05:00
s.author = { 'Sam Soffes' => 'sam@soff.es' }
2013-07-16 10:20:46 -04: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'
2013-09-07 08:33:47 -07:00
s.source_files = 'SSZipArchive/SSZipArchive.{h,m}', 'SSZipArchive/minizip/*.{h,c}'
s.header_dir = 'SSZipArchive/minizip'
2013-01-29 01:53:49 -05:00
s.library = 'z'
2012-06-02 13:32:36 -07:00
end