-
Notifications
You must be signed in to change notification settings - Fork 254
/
CoreBitcoin.podspec
22 lines (22 loc) · 958 Bytes
/
CoreBitcoin.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "CoreBitcoin"
s.version = "0.6.8.1"
s.summary = "CoreBitcoin is an implementation of Bitcoin protocol in Objective-C."
s.description = <<-DESC
CoreBitcoin is a complete toolkit to work with Bitcoin data structures.
DESC
s.homepage = "https://github.com/oleganza/CoreBitcoin"
s.license = 'WTFPL'
s.author = { "Oleg Andreev" => "[email protected]" }
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.source = { :git => "https://github.com/oleganza/CoreBitcoin.git", :tag => s.version.to_s }
s.source_files = 'CoreBitcoin'
s.exclude_files = ['CoreBitcoin/**/*+Tests.{h,m}', 'CoreBitcoin/BTCScriptTestData.h']
s.requires_arc = true
s.framework = 'Foundation'
s.ios.framework = 'UIKit'
s.osx.framework = 'AppKit'
s.dependency 'OpenSSL-Universal', '1.0.1.16'
s.dependency 'ISO8601DateFormatter'
end