forked from oleganza/CoreBitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoreBitcoin.podspec
More file actions
22 lines (22 loc) · 920 Bytes
/
CoreBitcoin.podspec
File metadata and controls
22 lines (22 loc) · 920 Bytes
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.7"
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" => "oleganza@gmail.com" }
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}'
s.requires_arc = true
s.framework = 'Foundation'
s.ios.framework = 'UIKit'
s.osx.framework = 'AppKit'
s.dependency 'OpenSSL-Universal', '1.0.1.j-2'
s.dependency 'ISO8601DateFormatter'
end