forked from mattconnolly/ZipArchive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZipArchive.podspec
More file actions
18 lines (17 loc) · 861 Bytes
/
ZipArchive.podspec
File metadata and controls
18 lines (17 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "ZipArchive"
s.version = "1.1.0"
s.summary = "An Objective C class for zip/unzip on iPhone and Mac OSX."
s.description = <<-DESC
ZipArchive is an Objective-C class to compress or uncompress zip files, which is base on open source code "MiniZip".
It can be used for iPhone application development, and cocoa on Mac OSX as well.
DESC
s.homepage = "https://github.com/mattconnolly/ZipArchive"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Unknown Name" => "acsolu@gmail.com", "Matt Connolly" => "matt.connolly@me.com" }
s.source = { :git => 'https://github.com/mattconnolly/ZipArchive.git', :tag => '1.1.0' }
s.source_files = '*.{h,m}', 'minizip/*.{h,c}'
s.public_header_files = '*.h'
s.library = 'z'
s.requires_arc = false
end