forked from zcash/zcash-swift-wallet-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZcashLightClientKit.podspec
More file actions
27 lines (23 loc) · 1.03 KB
/
ZcashLightClientKit.podspec
File metadata and controls
27 lines (23 loc) · 1.03 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
Pod::Spec.new do |s|
s.name = 'ZcashLightClientKit'
s.version = '0.17.5-beta'
s.summary = 'Zcash Light Client wallet SDK for iOS'
s.description = <<-DESC
Zcash Light Client wallet SDK for iOS
DESC
s.homepage = 'https://github.com/Meshbits/ZcashLightClientKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = {
'Francisco Gindre' => 'francisco.gindre@gmail.com',
'Jack Grigg' => 'str4d@electriccoin.co'
}
s.source = { :git => 'https://github.com/Meshbits/ZcashLightClientKit.git', :tag => 'v12-beta-5' }
s.source_files = 'Sources/ZcashLightClientKit/**/*.{swift,h}'
s.resource_bundles = { 'Resources' => 'Sources/ZcashLightClientKit/Resources/*' }
s.swift_version = '5.6'
s.ios.deployment_target = '13.0'
s.dependency 'gRPC-Swift', '~> 1.8.0'
s.dependency 'SQLite.swift', '~> 0.13.0'
s.dependency 'libzcashlc', '0.1.1'
s.static_framework = true
end