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
19 lines (18 loc) · 988 Bytes
/
ZipArchive.podspec
File metadata and controls
19 lines (18 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "ZipArchive"
s.version = "1.4.0"
s.summary = "An Objective C class for zip/unzip on iPhone and Mac OS X."
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.4.0' }
s.source_files = '*.{h,m}', 'minizip/crypt.{h,c}', 'minizip/ioapi.{h,c}', 'minizip/mztools.{h,c}', 'minizip/unzip.{h,c}', 'minizip/zip.{h,c}'
s.public_header_files = '*.h'
s.library = 'z'
s.requires_arc = false
s.compiler_flags = '-Dunix'
end