monero-gui/get_libwallet_api.sh

59 lines
1.6 KiB
Bash
Raw Normal View History

2016-05-17 15:03:59 +02:00
#!/bin/bash
2016-07-01 14:02:19 +02:00
BITMONERO_URL=https://github.com/mbg033/bitmonero.git
BITMONERO_BRANCH=master
2016-07-06 15:24:14 +02:00
# thanks to SO: http://stackoverflow.com/a/20283965/4118915
CPU_CORE_COUNT=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || sysctl -n hw.ncpu)
2016-05-17 15:03:59 +02:00
pushd $(pwd)
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
INSTALL_DIR=$ROOT_DIR/wallet
BITMONERO_DIR=$ROOT_DIR/bitmonero
if [ ! -d $BITMONERO_DIR ]; then
2016-07-01 14:02:19 +02:00
git clone --depth=1 $BITMONERO_URL $BITMONERO_DIR --branch $BITMONERO_BRANCH --single-branch
else
cd $BITMONERO_DIR;
git pull;
2016-05-17 15:03:59 +02:00
fi
rm -fr $BITMONERO_DIR/build
mkdir -p $BITMONERO_DIR/build/release
pushd $BITMONERO_DIR/build/release
2016-07-01 14:02:19 +02:00
if [ "$(uname)" == "Darwin" ]; then
# Do something under Mac OS X platform
cmake -D CMAKE_BUILD_TYPE=Release -D STATIC=ON -D CMAKE_INSTALL_PREFIX="$BITMONERO_DIR" ../..
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
# Do something under GNU/Linux platform
cmake -D CMAKE_BUILD_TYPE=Release -D STATIC=ON -D CMAKE_INSTALL_PREFIX="$BITMONERO_DIR" ../..
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then
# Do something under Windows NT platform
2016-07-04 17:17:26 +02:00
cmake -D CMAKE_BUILD_TYPE=Release -D STATIC=ON -D CMAKE_INSTALL_PREFIX="$BITMONERO_DIR" -G "MSYS Makefiles" ../..
2016-07-01 14:02:19 +02:00
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
# Do something under Windows NT platform
2016-07-04 17:17:26 +02:00
cmake -D CMAKE_BUILD_TYPE=Release -D STATIC=ON -D CMAKE_INSTALL_PREFIX="$BITMONERO_DIR" -G "MSYS Makefiles" ../..
2016-07-01 14:02:19 +02:00
fi
2016-05-17 15:03:59 +02:00
pushd $BITMONERO_DIR/build/release/src/wallet
make -j$CPU_CORE_COUNT
make install -j$CPU_CORE_COUNT
popd
popd