mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
f6670c0236
* Added CoinsInfo to monero_api_cpp * Add struct on dart * Add struct on dart * Set coins value * CW-415 Use add-coin-to-monero branch * CW-415 Add get Coin and build Monero Deps using Docker * CW-415 Fix Typo * CW-415 add debug log info * CW-415 Add preferred key Images for coin control to Monero * CW-415 Fix generation * CW-415 Skip GA Cache Externals * CW-415 Skip GA Cache Externals * CW-415 Coin Control: remove Block Explorer for Monero, Add Tx hash, save note on field exit * CW-415 Coin Control: Throw Exception when all outputs are deselected * CW-415 Coin Control: Show Frozen Balance on Dashboard * CW-415 Coin Control: Show Frozen Balance on Dashboard * CW-415 Ignore cached Monero deps in Workflow * CW-415 Fix displaying frozen Balance * Use own Translator with http 1.1.0 * CW-415 Resolve requested Changes * CW-415 Resolve requested Changes * CW-415 Resolve requested Changes * CW-415 Apply requested Changes * CW-415 Apply requested Changes * CW-415 Ensure opening of UnspentCoinsInfo Box, even for Monero.com --------- Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com>
55 lines
1.4 KiB
Bash
55 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. ./config.sh
|
|
OPENSSL_FILENAME=openssl-1.1.1q.tar.gz
|
|
OPENSSL_FILE_PATH=$WORKDIR/$OPENSSL_FILENAME
|
|
OPENSSL_SRC_DIR=$WORKDIR/openssl-1.1.1q
|
|
OPENSSL_SHA256="d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51bf8c8fd10ca"
|
|
ZLIB_DIR=$WORKDIR/zlib
|
|
ZLIB_TAG=v1.2.11
|
|
ZLIB_COMMIT_HASH="cacf7f1d4e3d44d871b605da3b647f07d718623f"
|
|
|
|
rm -rf $ZLIB_DIR
|
|
git clone -b $ZLIB_TAG --depth 1 https://github.com/madler/zlib $ZLIB_DIR
|
|
cd $ZLIB_DIR
|
|
git reset --hard $ZLIB_COMMIT_HASH
|
|
CC=clang CXX=clang++ ./configure --static
|
|
make
|
|
|
|
curl https://www.openssl.org/source/$OPENSSL_FILENAME -o $OPENSSL_FILE_PATH
|
|
echo $OPENSSL_SHA256 $OPENSSL_FILE_PATH | sha256sum -c - || exit 1
|
|
|
|
for arch in "aarch" "aarch64" "i686" "x86_64"
|
|
do
|
|
PREFIX=$WORKDIR/prefix_${arch}
|
|
TOOLCHAIN=${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64
|
|
PATH="${TOOLCHAIN}/bin:${ORIGINAL_PATH}"
|
|
|
|
case $arch in
|
|
"aarch") X_ARCH="android-arm";;
|
|
"aarch64") X_ARCH="android-arm64";;
|
|
"i686") X_ARCH="android-x86";;
|
|
"x86_64") X_ARCH="android-x86_64";;
|
|
*) X_ARCH="android-${arch}";;
|
|
esac
|
|
|
|
cd $WORKDIR
|
|
rm -rf $OPENSSL_SRC_DIR
|
|
tar -xzf $OPENSSL_FILE_PATH -C $WORKDIR
|
|
cd $OPENSSL_SRC_DIR
|
|
|
|
CC=clang ANDROID_NDK=$TOOLCHAIN \
|
|
./Configure ${X_ARCH} \
|
|
no-shared no-tests \
|
|
--with-zlib-include=${PREFIX}/include \
|
|
--with-zlib-lib=${PREFIX}/lib \
|
|
--prefix=${PREFIX} \
|
|
--openssldir=${PREFIX} \
|
|
-D__ANDROID_API__=$API
|
|
make -j$THREADS
|
|
make -j$THREADS install_sw
|
|
|
|
done
|
|
|