forked from abbeycode/UnzipKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnzipKit.podspec
25 lines (25 loc) · 1.08 KB
/
UnzipKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = "UnzipKit"
s.version = ENV["TRAVIS_TAG"]
s.summary = "An Objective-C zlib wrapper for compressing and decompressing Zip files"
s.license = "BSD"
s.homepage = "https://github.com/abbeycode/UnzipKit"
s.author = { "Dov Frankel" => "dov@abbey-code.com" }
s.social_media_url = "https://twitter.com/dovfrankel"
s.source = { :git => "https://github.com/abbeycode/UnzipKit.git", :tag => "#{s.version}" }
s.ios.deployment_target = "7.0"
s.osx.deployment_target = "10.9"
s.requires_arc = 'Source/**/*'
s.public_header_files = "Source/UnzipKit.h",
"Source/UZKArchive.h",
"Source/UZKFileInfo.h"
s.private_header_files = "Source/UZKFileInfo_Private.h",
"Lib/**/*.h"
s.source_files = "Source/**/*.{m,h}",
"Lib/**/*.{c,h}"
s.exclude_files = 'Resources/**/Info.plist'
s.resource_bundles = {
'UnzipKitResources' => ['Resources/**/*']
}
s.library = "z"
end