forked from zlib-ng/minizip-ng
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMinizip.podspec
27 lines (24 loc) · 921 Bytes
/
Minizip.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
26
27
Pod::Spec.new do |s|
s.name = 'Minizip'
s.version = '1.1.0.2017.03.20'
s.license = 'zlib'
s.summary = 'Minizip contrib in zlib with latest bug fixes that supports PKWARE disk spanning, AES encryption, and IO buffering'
s.description = <<-DESC
Minizip zlib contribution that includes:
* AES encryption
* I/O buffering
* PKWARE disk spanning
It also has the latest bug fixes that having been found all over the internet including the minizip forum and zlib developer's mailing list.
DESC
s.homepage = 'http://www.winimage.com/zLibDll/minizip.html'
s.authors = 'Gilles Vollant', 'Nathan Moinvaziri'
s.source = { :git => 'https://github.com/nmoinvaz/minizip.git' }
s.libraries = 'z'
s.subspec 'Core' do |sp|
sp.source_files = '{ioapi,ioapi_mem,ioapi_buf,unzip,zip,crypt}.{c,h}'
end
s.subspec 'AES' do |sp|
sp.dependency 'Minizip/Core'
sp.source_files = 'aes/*.{c,h}'
end
end