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