-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathOrcaSwapSwift.podspec
29 lines (24 loc) · 1.08 KB
/
OrcaSwapSwift.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
Pod::Spec.new do |s|
s.name = 'OrcaSwapSwift'
s.version = '3.0.0'
s.summary = 'A client for OrcaSwap written in Swift.'
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/p2p-org/OrcaSwapSwift'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Chung Tran' => '[email protected]' }
s.source = { :git => 'https://github.com/p2p-org/OrcaSwapSwift.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '13.0'
s.swift_version = '5.5'
s.source_files = 'Sources/OrcaSwapSwift/**/*'
# s.resources = 'Sources/OrcaSwapSwift/Resources/*'
# s.resource_bundles = {
# 'OrcaSwapSwift' => ['OrcaSwapSwift/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
s.dependency 'SolanaSwift', '~> 3'
end