Files
ZipArchive/SSZipArchive.podspec
T

18 lines
952 B
Ruby
Raw Normal View History

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'
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.'
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 }
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'
s.source_files = 'SSZipArchive/*.{m,h}', 'SSZipArchive/minizip/*.{c,h}', 'SSZipArchive/minizip/aes/*.{c,h}'
s.public_header_files = 'SSZipArchive/*.h'
2015-07-12 12:30:14 +01:00
s.library = 'z'
end