forked from cryptomator/cryptomator-objc-cryptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SETOCryptomatorCryptor.podspec
31 lines (26 loc) · 1.16 KB
/
SETOCryptomatorCryptor.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
28
29
30
31
Pod::Spec.new do |s|
s.name = 'SETOCryptomatorCryptor'
s.version = '1.0'
s.license = 'MIT'
s.summary = 'SETOCryptomatorCryptor is an iOS crypto framework to access Cryptomator vaults.'
s.homepage = 'https://github.com/cryptomator/cryptomator-objc-cryptor'
s.social_media_url = 'https://twitter.com/Cryptomator'
s.authors = { 'Tobias Hagemann' => 'tobias.hagemann@setolabs.com',
'Sebastian Stenzel' => 'sebastian.stenzel@setolabs.com' }
s.source = { :git => 'https://github.com/cryptomator/cryptomator-objc-cryptor.git', :tag => s.version.to_s }
s.requires_arc = true
s.public_header_files = "SETOCryptomatorCryptor/{SETOCryptomatorCryptor,SETOAsyncCryptomatorCryptor,SETOMasterKey}.h"
s.source_files = 'SETOCryptomatorCryptor/*.{h,m,c}'
s.platform = :ios, '8.0'
s.frameworks = 'Security'
s.dependency 'Base32', '~> 1.0.0'
s.dependency 'KZPropertyMapper', '~> 2.6.0'
s.dependency 'OpenSSL-Universal', '~> 1.0.1'
s.subspec 'e_aeswrap' do |ss|
ss.source_files = 'e_aeswrap/*.{h,c}'
ss.dependency 'OpenSSL-Universal', '~> 1.0.1'
end
s.subspec 'scrypt' do |ss|
ss.source_files = 'scrypt/*.{h,c}'
end
end