This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
EosioSwiftVault.podspec
58 lines (49 loc) · 2.37 KB
/
EosioSwiftVault.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
# Be sure to run `pod lib lint EosioSwiftVault.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'EosioSwiftVault'
s.version = '1.0.0'
s.summary = 'Keychain and Secure Enclave functions for EOSIO.'
s.homepage = 'https://github.com/EOSIO/eosio-swift-vault'
s.license = { :type => 'MIT', :text => <<-LICENSE
Copyright (c) 2017-2020 block.one and its contributors. All rights reserved.
LICENSE
}
s.author = { 'Todd Bowden' => 'todd.bowden@block.one',
'Serguei Vinnitskii' => 'serguei.vinnitskii@block.one',
'Farid Rahmani' => 'farid.rahmani@block.one',
'Brandon Fancher' => 'brandon.fancher@block.one',
'Mark Johnson' => 'mark.johnson@block.one',
'Paul Kim' => 'paul.kim@block.one',
'Steve McCoole' => 'steve.mccoole@objectpartners.com',
'Ben Martell' => 'ben.martell@objectpartners.com' }
s.source = { :git => 'https://github.com/EOSIO/eosio-swift-vault.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '12.0'
s.subspec 'Vault' do |ss|
ss.source_files = 'Sources/EosioSwiftVault/**/*.swift'
ss.pod_target_xcconfig = {
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
'CLANG_ENABLE_MODULES' => 'YES',
'SWIFT_COMPILATION_MODE' => 'wholemodule',
'ENABLE_BITCODE' => 'YES' }
ss.ios.dependency 'EosioSwift/Core', '~> 1.0.0'
ss.ios.dependency 'EosioSwift/Ecc', '~> 1.0.0'
end
s.subspec 'VaultSignatureProvider' do |ss|
ss.source_files = 'Sources/EosioSwiftVaultSignatureProvider/**/*.swift'
ss.pod_target_xcconfig = {
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
'CLANG_ENABLE_MODULES' => 'YES',
'SWIFT_COMPILATION_MODE' => 'wholemodule',
'ENABLE_BITCODE' => 'YES' }
ss.ios.dependency 'EosioSwift/Core', '~> 1.0.0'
ss.ios.dependency 'EosioSwift/Ecc', '~> 1.0.0'
ss.ios.dependency 'EosioSwiftVault/Vault'
end
end