forked from horizontalsystems/bitcoin-kit-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHodler-Universal.swift.podspec
28 lines (22 loc) · 1.05 KB
/
Hodler-Universal.swift.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
Pod::Spec.new do |s|
s.name = 'Hodler-Universal.swift'
s.module_name = 'Hodler'
s.version = '0.17'
s.summary = 'Hodler library for Swift. Supports iOS & macOS'
s.description = <<-DESC
Hodler plugin enables to send/receive/spend time-locked transactions.
DESC
s.homepage = 'https://github.com/cuhte3/bitcoin-kit-universal'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Horizontal Systems' => '[email protected]', 'cuhte3' => '[email protected]' }
s.source = { git: 'https://github.com/cuhte3/bitcoin-kit-universal.git', tag: "hodler-#{s.version}" }
s.social_media_url = 'http://horizontalsystems.io/'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.14'
s.swift_version = '5'
s.source_files = 'Hodler/Classes/**/*'
s.requires_arc = true
s.dependency 'BitcoinCore-Universal.swift', '~> 0.17'
s.dependency 'OpenSslKit-Universal.swift', '~> 1.2.2'
s.dependency 'Secp256k1Kit-Universal.swift', '~> 1.1'
end