-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathZKSyncCrypto.podspec
32 lines (22 loc) · 1.24 KB
/
ZKSyncCrypto.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
Pod::Spec.new do |spec|
spec.name = "ZKSyncCrypto"
spec.version = "0.0.9"
spec.summary = "Cryptographical primitives used in zkSync network."
spec.description = <<-DESC
zkSync is a scaling and privacy engine for Ethereum. Its current functionality scope includes low gas transfers of ETH and ERC20 tokens in the Ethereum network
DESC
spec.homepage = "https://github.com/zksync-sdk/zksync-sdk-swift"
spec.license = "MIT"
spec.author = { "The Matter Labs team" => "[email protected]" }
spec.platform = :ios, "10.0"
# When using multiple platforms
spec.ios.deployment_target = "10.0"
spec.swift_version = '5.0'
spec.source = { :git => "https://github.com/zksync-sdk/zksync-sdk-swift.git", :tag => "#{spec.version}" }
spec.source_files = "ZKSyncCrypto/ZKSyncCrypto/**/*.{swift,h}"
spec.preserve_paths = 'ZKSyncCrypto/ZKSyncCrypto/*.{modulemap}'
spec.vendored_libraries = "ZKSyncCrypto/ZKSyncCrypto/libzks/*.{a}"
# spec.xcconfig = { :VALID_ARCHS => 'arm64 arm64e armv7 armv7s x86_64' }
spec.pod_target_xcconfig = { :VALID_ARCHS => 'arm64 arm64e armv7 armv7s x86_64' }
# spec.user_target_xcconfig = { :VALID_ARCHS => 'arm64 arm64e armv7 armv7s x86_64' }
end