ZcashLightClientKit/ZcashLightClientKit.podspec

28 lines
1.0 KiB
Plaintext
Raw Permalink Normal View History

2019-09-09 08:30:38 -07:00
Pod::Spec.new do |s|
s.name = 'ZcashLightClientKit'
2022-11-07 09:21:22 -08:00
s.version = '0.17.0-beta.rc1'
2019-09-09 08:30:38 -07:00
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/zcash/ZcashLightClientKit'
2020-06-09 19:06:52 -07:00
s.license = { :type => 'MIT', :file => 'LICENSE' }
2019-09-09 08:54:21 -07:00
s.author = {
'Francisco Gindre' => 'francisco.gindre@gmail.com',
'Jack Grigg' => 'str4d@electriccoin.co'
}
s.source = { :git => 'https://github.com/zcash/ZcashLightClientKit.git', :tag => s.version.to_s }
2019-09-09 08:30:38 -07:00
2022-02-28 09:03:20 -08:00
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'
2022-10-31 04:37:11 -07:00
s.dependency 'SQLite.swift', '~> 0.13.0'
2022-11-04 14:30:43 -07:00
s.dependency 'libzcashlc', '0.1.0-beta.3'
2022-02-28 09:03:20 -08:00
s.static_framework = true
2020-01-14 14:25:14 -08:00
end