2016-07-25 13:24:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-10-13 12:41:51 +00:00
|
|
|
BUILD_TYPE=$1
|
2017-01-29 18:31:04 +00:00
|
|
|
source ./utils.sh
|
|
|
|
platform=$(get_platform)
|
2016-12-22 09:10:03 +00:00
|
|
|
# default build type
|
2016-10-13 12:41:51 +00:00
|
|
|
if [ -z $BUILD_TYPE ]; then
|
2016-12-22 09:10:03 +00:00
|
|
|
BUILD_TYPE=release
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$BUILD_TYPE" == "release" ]; then
|
|
|
|
echo "Building release"
|
|
|
|
CONFIG="CONFIG+=release";
|
|
|
|
BIN_PATH=release/bin
|
|
|
|
elif [ "$BUILD_TYPE" == "release-static" ]; then
|
|
|
|
echo "Building release-static"
|
2017-01-29 18:31:04 +00:00
|
|
|
if [ "$platform" != "darwin" ]; then
|
|
|
|
CONFIG="CONFIG+=release static";
|
|
|
|
else
|
|
|
|
# OS X: build static libwallet but dynamic Qt.
|
|
|
|
echo "OS X: Building Qt project without static flag"
|
|
|
|
CONFIG="CONFIG+=release";
|
|
|
|
fi
|
2016-12-22 09:10:03 +00:00
|
|
|
BIN_PATH=release/bin
|
2017-01-01 04:55:49 +00:00
|
|
|
elif [ "$BUILD_TYPE" == "release-android" ]; then
|
|
|
|
echo "Building release for ANDROID"
|
2017-01-31 04:36:08 +00:00
|
|
|
CONFIG="CONFIG+=release static WITH_SCANNER";
|
2017-01-01 04:55:49 +00:00
|
|
|
ANDROID=true
|
|
|
|
BIN_PATH=release/bin
|
|
|
|
elif [ "$BUILD_TYPE" == "debug-android" ]; then
|
|
|
|
echo "Building debug for ANDROID : ultra INSECURE !!"
|
2017-01-31 04:36:08 +00:00
|
|
|
CONFIG="CONFIG+=debug qml_debug WITH_SCANNER";
|
2017-01-01 04:55:49 +00:00
|
|
|
ANDROID=true
|
|
|
|
BIN_PATH=debug/bin
|
2016-12-22 09:10:03 +00:00
|
|
|
elif [ "$BUILD_TYPE" == "debug" ]; then
|
|
|
|
echo "Building debug"
|
|
|
|
CONFIG="CONFIG+=debug"
|
|
|
|
BIN_PATH=debug/bin
|
|
|
|
else
|
2017-01-01 04:55:49 +00:00
|
|
|
echo "Valid build types are release, release-static, release-android, debug-android and debug"
|
2016-12-22 09:10:03 +00:00
|
|
|
exit 1;
|
2016-10-13 12:41:51 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2016-09-22 18:39:43 +00:00
|
|
|
source ./utils.sh
|
2016-07-25 13:24:07 +00:00
|
|
|
pushd $(pwd)
|
|
|
|
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2016-09-19 13:45:34 +00:00
|
|
|
MONERO_DIR=monero
|
2016-12-09 08:42:12 +00:00
|
|
|
MONEROD_EXEC=monerod
|
2016-07-25 13:24:07 +00:00
|
|
|
|
2017-02-02 21:11:33 +00:00
|
|
|
MAKE='make'
|
|
|
|
if [[ $platform == *bsd* ]]; then
|
|
|
|
MAKE='gmake'
|
|
|
|
fi
|
|
|
|
|
2017-01-16 20:30:29 +00:00
|
|
|
# build libwallet
|
2017-10-04 18:07:09 +00:00
|
|
|
./get_libwallet_api.sh $BUILD_TYPE
|
2016-07-25 13:24:07 +00:00
|
|
|
|
2016-12-15 23:47:53 +00:00
|
|
|
# build zxcvbn
|
2017-02-02 21:11:33 +00:00
|
|
|
$MAKE -C src/zxcvbn-c || exit
|
2016-12-15 23:47:53 +00:00
|
|
|
|
2016-07-25 13:24:07 +00:00
|
|
|
if [ ! -d build ]; then mkdir build; fi
|
2016-08-03 12:59:42 +00:00
|
|
|
|
2016-10-13 12:41:51 +00:00
|
|
|
|
2016-12-09 08:42:12 +00:00
|
|
|
# Platform indepenent settings
|
2017-01-02 16:34:35 +00:00
|
|
|
if [ "$ANDROID" != true ] && ([ "$platform" == "linux32" ] || [ "$platform" == "linux64" ]); then
|
2016-09-22 18:39:43 +00:00
|
|
|
distro=$(lsb_release -is)
|
|
|
|
if [ "$distro" == "Ubuntu" ]; then
|
|
|
|
CONFIG="$CONFIG libunwind_off"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-12-09 08:42:12 +00:00
|
|
|
if [ "$platform" == "darwin" ]; then
|
2016-12-16 22:01:45 +00:00
|
|
|
BIN_PATH=$BIN_PATH/monero-wallet-gui.app/Contents/MacOS/
|
2016-12-09 08:42:12 +00:00
|
|
|
elif [ "$platform" == "mingw64" ] || [ "$platform" == "mingw32" ]; then
|
|
|
|
MONEROD_EXEC=monerod.exe
|
|
|
|
fi
|
|
|
|
|
2016-12-20 21:13:42 +00:00
|
|
|
# force version update
|
|
|
|
get_tag
|
2017-05-02 18:01:49 +00:00
|
|
|
echo "var GUI_VERSION = \"$TAGNAME\"" > version.js
|
2016-12-21 10:47:16 +00:00
|
|
|
pushd "$MONERO_DIR"
|
|
|
|
get_tag
|
|
|
|
popd
|
2017-05-02 18:01:49 +00:00
|
|
|
echo "var GUI_MONERO_VERSION = \"$TAGNAME\"" >> version.js
|
2016-12-20 21:13:42 +00:00
|
|
|
|
2016-09-22 18:39:43 +00:00
|
|
|
cd build
|
2017-02-02 21:11:33 +00:00
|
|
|
qmake ../monero-wallet-gui.pro "$CONFIG" || exit
|
|
|
|
$MAKE || exit
|
2016-12-09 08:42:12 +00:00
|
|
|
|
|
|
|
# Copy monerod to bin folder
|
2017-01-01 04:55:49 +00:00
|
|
|
if [ "$platform" != "mingw32" ] && [ "$ANDROID" != true ]; then
|
2016-12-09 08:42:12 +00:00
|
|
|
cp ../$MONERO_DIR/bin/$MONEROD_EXEC $BIN_PATH
|
2016-12-09 10:12:53 +00:00
|
|
|
fi
|
2016-12-09 08:42:12 +00:00
|
|
|
|
2016-10-19 12:42:26 +00:00
|
|
|
# make deploy
|
2016-07-25 13:24:07 +00:00
|
|
|
popd
|
|
|
|
|