mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-12 09:32:33 +00:00
Update build scripts
This commit is contained in:
parent
d9cafaf4e7
commit
d46269b172
5 changed files with 30 additions and 8 deletions
|
@ -1,8 +1,14 @@
|
|||
# /bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
./build_iconv.sh
|
||||
./build_boost.sh
|
||||
./build_openssl.sh
|
||||
./build_sodium.sh
|
||||
./build_zmq.sh
|
||||
./build_monero.sh
|
||||
if [ -z "$APP_ANDROID_TYPE" ]; then
|
||||
echo "Please set APP_ANDROID_TYPE"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
DIR=$(dirname "$0")
|
||||
|
||||
case $APP_ANDROID_TYPE in
|
||||
"monero.com") $DIR/build_monero_all.sh ;;
|
||||
"cakewallet") $DIR/build_monero_all.sh ;;
|
||||
"haven") $DIR/build_haven_all.sh ;;
|
||||
esac
|
||||
|
|
8
scripts/android/build_haven_all.sh
Executable file
8
scripts/android/build_haven_all.sh
Executable file
|
@ -0,0 +1,8 @@
|
|||
# /bin/bash
|
||||
|
||||
./build_iconv.sh
|
||||
./build_boost.sh
|
||||
./build_openssl.sh
|
||||
./build_sodium.sh
|
||||
./build_zmq.sh
|
||||
./build_haven.sh
|
8
scripts/android/build_monero_all.sh
Executable file
8
scripts/android/build_monero_all.sh
Executable file
|
@ -0,0 +1,8 @@
|
|||
# /bin/bash
|
||||
|
||||
./build_iconv.sh
|
||||
./build_boost.sh
|
||||
./build_openssl.sh
|
||||
./build_sodium.sh
|
||||
./build_zmq.sh
|
||||
./build_monero.sh
|
|
@ -24,7 +24,7 @@ CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
|
|||
|
||||
HAVEN_NAME="Haven"
|
||||
HAVEN_VERSION="1.0.0"
|
||||
HAVEN_BUILD_NUMBER=1
|
||||
HAVEN_BUILD_NUMBER=3
|
||||
HAVEN_BUNDLE_ID="com.cakewallet.haven"
|
||||
|
||||
if ! [[ " ${TYPES[*]} " =~ " ${APP_IOS_TYPE} " ]]; then
|
||||
|
|
Loading…
Reference in a new issue