Uh oh!
There was an error while loading. Please reload this page.
forked from yenom/BitcoinKit
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitcoinKit.podspec
More file actions
Latest commit
30 lines (28 loc) · 1.91 KB
/
Copy pathBitcoinKit.podspec
File metadata and controls
30 lines (28 loc) · 1.91 KB
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
29
30
Pod::Spec.newdo |spec|
spec.name='BitcoinKit'
spec.version='1.0.0'
spec.summary='Bitcoin(BCH/BTC) protocol toolkit for Swift'
spec.description=<<-DESC
The BitcoinKit library is a Swift implementation of the Bitcoin(BCH/BTC) protocol. This library was originally made by Katsumi Kishikawa, and now is maintained by Yenom Inc. It allows maintaining a wallet and sending/receiving transactions without needing a full blockchain node. It comes with a simple wallet app showing how to use it.
```
DESC
spec.homepage='https://github.com/yenom/BitcoinKit'
spec.license={:type=>'MIT',:file=>'LICENSE'}
spec.author={'BitcoinKit developers'=>'usatie@yenom.tech'}
spec.requires_arc=true
spec.source={git: 'https://github.com/yenom/BitcoinKit.git',tag: "v#{spec.version}"}
spec.source_files='BitcoinKit/**/*.{h,m,swift}','Sources/BitcoinKit/**/*.{h,m,swift}'
spec.private_header_files='BitcoinKit/**/BitcoinKitPrivate.h'
spec.exclude_files='Sources/**/LinuxSupport.swift'
spec.module_map='BitcoinKit/BitcoinKit.modulemap'
spec.ios.deployment_target='8.0'
spec.swift_version='4.1'
spec.pod_target_xcconfig={'SWIFT_WHOLE_MODULE_OPTIMIZATION'=>'YES',
'APPLICATION_EXTENSION_API_ONLY'=>'YES',
'SWIFT_INCLUDE_PATHS'=>'${PODS_ROOT}/BitcoinKit/Libraries',
'HEADER_SEARCH_PATHS'=>'"${PODS_ROOT}/BitcoinKit/Libraries/openssl/include" "${PODS_ROOT}/BitcoinKit/Libraries/secp256k1/include"',
'LIBRARY_SEARCH_PATHS'=>'"${PODS_ROOT}/BitcoinKit/Libraries/openssl/lib" "${PODS_ROOT}/BitcoinKit/Libraries/secp256k1/lib"',
'OTHER_SWIFT_FLAGS'=>'-D BitcoinKitXcode'}
spec.preserve_paths=['setup','Libraries']
spec.prepare_command='sh setup/build_libraries.sh'
end