bitcore-node-zcash/bin/build-libbitcoind

69 lines
1.4 KiB
Plaintext
Raw Normal View History

2014-12-09 13:29:32 -08:00
#!/bin/bash
2014-12-06 16:43:53 -08:00
2014-12-09 13:24:24 -08:00
root_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/.."
cd "$root_dir"
2015-07-02 11:59:14 -07:00
2014-12-07 02:02:51 -08:00
os_dir=$(./platform/os.sh osdir)
2014-12-06 17:18:12 -08:00
2014-12-07 00:02:31 -08:00
if test -e "${os_dir}/libbitcoind.so"; then
read -r -p 'libbitcoind.so already built. Rebuild? (Y/n): ' choice
2014-12-07 00:04:13 -08:00
if test x"$choice" != x'y' -a x"$choice" != x'Y'; then
2014-12-07 00:02:31 -08:00
echo 'libbitcoind.so ready.'
exit 0
fi
2014-12-07 02:07:57 -08:00
rm -rf libbitcoind
2014-12-07 00:56:43 -08:00
rm -f "${os_dir}/libbitcoind.so"
2014-12-07 00:02:31 -08:00
fi
2014-12-06 17:18:12 -08:00
if test -n "$1"; then
if test "$1" = 'remote'; then
2014-12-07 00:56:43 -08:00
echo 'git clone'
git clone git://github.com/bitcoin/bitcoin.git libbitcoind || exit 1
2014-12-09 13:24:24 -08:00
btc_dir="${root_dir}/libbitcoind"
2014-12-06 17:18:12 -08:00
else
btc_dir=$1
if ! test -d "$btc_dir"; then
"$0" remote
exit 0
fi
2014-12-06 17:18:12 -08:00
fi
shift
else
btc_dir="${HOME}/bitcoin"
if ! test -d "$btc_dir"; then
"$0" remote
exit 0
fi
2014-12-06 17:18:12 -08:00
fi
2014-12-06 16:43:53 -08:00
2014-12-07 00:56:43 -08:00
echo "Found BTC directory: $btc_dir"
echo './patch-bitcoin.sh' "$btc_dir"
2014-12-09 13:24:24 -08:00
./bin/patch-bitcoin "$btc_dir" || exit 1
2014-12-06 16:43:53 -08:00
cd "$btc_dir" || exit 1
2014-12-07 00:24:57 -08:00
if ! test -d .git; then
echo 'Please point this script to an upstream bitcoin git repo.'
exit 1
fi
2014-12-07 00:53:27 -08:00
2014-12-07 00:56:43 -08:00
echo './autogen.sh'
2014-12-06 16:43:53 -08:00
./autogen.sh || exit 1
2014-12-06 17:18:12 -08:00
if test -n "$1"; then
2014-12-07 00:56:43 -08:00
echo './configure --enable-daemonlib' "$@"
2014-12-07 00:53:27 -08:00
./configure --enable-daemonlib "$@" || exit 1
2014-12-06 17:18:12 -08:00
else
2014-12-07 00:56:43 -08:00
echo './configure --enable-daemonlib'
2014-12-07 00:53:27 -08:00
./configure --enable-daemonlib || exit 1
2014-12-06 17:18:12 -08:00
fi
2014-12-07 00:56:43 -08:00
echo 'make'
2014-12-06 16:43:53 -08:00
make || exit 1
2014-12-07 00:56:43 -08:00
echo 'Copying libbitcoind.so to its appropriate location.'
2014-12-07 02:06:18 -08:00
mv src/libbitcoind.so "${os_dir}/libbitcoind.so" || exit 1
2014-12-06 17:18:12 -08:00
2014-12-06 16:43:53 -08:00
echo 'Build finished successfully.'
exit 0