[Add] TiendeoCoreLite 1.0.11-lite
[CocoaPods.git] / Specs / 8 / 0 / 1 / BitcoinSPV / 0.7.1 / BitcoinSPV.podspec.json
blob2e0677be4c520a9774a7606ec0c13973e50ab252
2   "name": "BitcoinSPV",
3   "version": "0.7.1",
4   "platforms": {
5     "ios": "7.0"
6   },
7   "license": "GPL",
8   "summary": "A native Bitcoin SPV client library for iOS with BIP32 support.",
9   "homepage": "https://github.com/keeshux/BitcoinSPV",
10   "authors": {
11     "Davide De Rosa": "keeshux@gmail.com"
12   },
13   "source": {
14     "git": "https://github.com/keeshux/BitcoinSPV.git",
15     "tag": "0.7.1"
16   },
17   "source_files": "BitcoinSPV/Sources/BitcoinSPV.h",
18   "exclude_files": [
19     "BitcoinSPVDemo",
20     "BitcoinSPVTests"
21   ],
22   "resource_bundles": {
23     "BitcoinSPV": "BitcoinSPV/Resources/**/*"
24   },
25   "requires_arc": true,
26   "dependencies": {
27     "OpenSSL-Universal": [
28       "~> 1.0.1.l"
29     ],
30     "CocoaLumberjack": [
31       "~> 1.9.2"
32     ],
33     "CocoaAsyncSocket": [
34       "~> 7.3.5"
35     ],
36     "AutoCoding": [
37       "~> 2.2.1"
38     ]
39   },
40   "subspecs": [
41     {
42       "name": "Core",
43       "source_files": [
44         "BitcoinSPV/Sources/BIPS/*.{h,m}",
45         "BitcoinSPV/Sources/Core/*.{h,m}",
46         "BitcoinSPV/Sources/Global/*.{h,m}",
47         "BitcoinSPV/Sources/Parameters/*.{h,m}",
48         "BitcoinSPV/Sources/Utils/*.{h,m}"
49       ]
50     },
51     {
52       "name": "Blockchain",
53       "source_files": [
54         "BitcoinSPV/Sources/Blockchain/*.{h,m}",
55         "BitcoinSPV/Sources/Model/*.{h,m}"
56       ],
57       "frameworks": "CoreData",
58       "dependencies": {
59         "BitcoinSPV/Core": [
61         ]
62       }
63     },
64     {
65       "name": "Wallet",
66       "source_files": "BitcoinSPV/Sources/Wallet/*.{h,m}",
67       "dependencies": {
68         "BitcoinSPV/Core": [
70         ],
71         "BitcoinSPV/Blockchain": [
73         ]
74       }
75     },
76     {
77       "name": "Network",
78       "source_files": [
79         "BitcoinSPV/Sources/Networking/*.{h,m}",
80         "BitcoinSPV/Sources/Protocol/*.{h,m}"
81       ],
82       "dependencies": {
83         "BitcoinSPV/Core": [
85         ],
86         "BitcoinSPV/Blockchain": [
88         ],
89         "BitcoinSPV/Wallet": [
91         ]
92       }
93     },
94     {
95       "name": "Tools",
96       "source_files": [
97         "BitcoinSPV/Sources/Currency/*.{h,m}",
98         "BitcoinSPV/Sources/Web/*.{h,m}"
99       ],
100       "dependencies": {
101         "BitcoinSPV/Core": [
103         ]
104       }
105     }
106   ]