forked from bozaigao/ZipArchive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPushySSZipArchive.podspec
More file actions
16 lines (16 loc) · 991 Bytes
/
PushySSZipArchive.podspec
File metadata and controls
16 lines (16 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'PushySSZipArchive'
s.version = '2.4.3'
s.summary = 'Utility class for zipping and unzipping files on iOS, tvOS, watchOS, and macOS.'
s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS, tvOS, watchOS, and macOS. It supports AES and PKWARE encryption.'
s.homepage = 'https://github.com/reactnativecn/ZipArchive'
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.source = { :git => 'https://github.com/reactnativecn/ZipArchive.git', :tag => "#{s.version}" }
s.ios.deployment_target = '9.0'
s.source_files = 'SSZipArchive/*.{m,h}', 'SSZipArchive/include/*.{m,h}', 'SSZipArchive/minizip/*.{c,h}'
s.public_header_files = 'SSZipArchive/*.h'
s.libraries = 'z', 'iconv'
s.framework = 'Security'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES',
'GCC_PREPROCESSOR_DEFINITIONS' => 'HAVE_INTTYPES_H HAVE_PKCRYPT HAVE_STDINT_H HAVE_WZAES HAVE_ZLIB' }
end