blob: 7f7ac81b3212e6fd2068864be6bb69e8c71e3160 [file] [log] [blame]
{
"name": "BitcoinCashKit",
"version": "0.2.0",
"summary": "Bitcoin cash protocol toolkit for Swift",
"description": "The BitcoinCashKit library is a Swift implementation of the Bitcoin cash protocol. This library is a fork of Katsumi Kishikawa's original BitcoinKit library aimed at supporting the Bitcoin cash eco-system. 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.\n```",
"homepage": "https://github.com/BitcoinCashKit/BitcoinCashKit",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"BitcoinCashKit developers": "usatie@yenom.tech"
},
"requires_arc": true,
"source": {
"git": "https://github.com/BitcoinCashKit/BitcoinCashKit.git",
"tag": "v0.2.0"
},
"source_files": "BitcoinCashKit/**/*.{h,m,swift}",
"private_header_files": "BitcoinCashKit/**/BitcoinCashKitPrivate.h",
"module_map": "BitcoinCashKit/BitcoinCashKit.modulemap",
"platforms": {
"ios": "8.0"
},
"swift_version": "4.1",
"pod_target_xcconfig": {
"SWIFT_WHOLE_MODULE_OPTIMIZATION": "YES",
"APPLICATION_EXTENSION_API_ONLY": "YES",
"SWIFT_INCLUDE_PATHS": "${PODS_ROOT}/BitcoinCashKit/Libraries",
"HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/BitcoinCashKit/Libraries/openssl/include\" \"${PODS_ROOT}/BitcoinCashKit/Libraries/secp256k1/include\"",
"LIBRARY_SEARCH_PATHS": "\"${PODS_ROOT}/BitcoinCashKit/Libraries/openssl/lib\" \"${PODS_ROOT}/BitcoinCashKit/Libraries/secp256k1/lib\""
},
"preserve_paths": [
"setup",
"Libraries"
],
"prepare_command": "sh setup/build_libraries.sh"
}