Merge pull request #1 from dh-ecc/main

Add specs
This commit is contained in:
Francisco Gindre 2022-03-02 11:23:58 -03:00 committed by GitHub
commit b4ca33ce67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
Pod::Spec.new do |s|
s.name = 'libzcashlc'
s.version = '0.0.1'
s.summary = 'Rust core for ZCash clients'
s.homepage = 'https://github.com/zcash-hackworks/zcash-light-client-ffi'
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/zcash-hackworks/zcash-light-client-ffi', :tag => s.version.to_s }
s.vendored_frameworks = 'releases/XCFramework/libzcashlc.xcframework'
s.preserve_paths = 'releases/XCFramework/libzcashlc.xcframework'
s.static_framework = true
end