forked from kinecosystem/kin-core-ios-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKinSDK.podspec
More file actions
32 lines (25 loc) · 1.22 KB
/
KinSDK.podspec
File metadata and controls
32 lines (25 loc) · 1.22 KB
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
Pod::Spec.new do |s|
s.name = 'KinSDK'
s.version = '0.3.9'
s.summary = 'pod for the KIN SDK.'
s.description = <<-DESC
Initial pod for the KIN SDK.
DESC
s.homepage = 'https://github.com/kinfoundation/kin-sdk-core-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kin Foundation' => 'kin@kik.com' }
s.source = { :git => 'git@github.com:kinfoundation/kin-sdk-core-ios.git' }
s.prepare_command = <<-CMD
make get-geth
CMD
s.source_files = 'KinSDK/KinSDK/**/*.swift'
s.resource_bundles = {
'KinSDK' => ['KinSDK/KinSDK/Resources/contractABI.json']
}
s.preserve_paths = 'KinSDK/Module/module.modulemap', 'KinSDK/Geth.framework/**/*', 'KinSDK/KinSDK/Resources/**/*', 'geth-commit'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) $(PODS_ROOT)/KinSDK/KinSDK',
'SWIFT_INCLUDE_PATHS' => '$(PODS_ROOT)/KinSDK/KinSDK/Module',
'OTHER_LDFLAGS' => '-framework Geth' }
s.pod_target_xcconfig = { 'OTHER_LDFLAGS[arch=i386]' => '-read_only_relocs suppress -framework Geth' }
s.vendored_frameworks = 'KinSDK.framework'
end