-
Notifications
You must be signed in to change notification settings - Fork 258
/
ZipArchive.podspec
19 lines (18 loc) · 988 Bytes
/
ZipArchive.podspec
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" => "[email protected]", "Matt Connolly" => "[email protected]" }
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