mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-19 17:25:02 +00:00
35 lines
936 B
Bash
Executable file
35 lines
936 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. ./config.sh
|
|
LIBWALLET_PATH="${EXTERNAL_IOS_SOURCE_DIR}/libwallet"
|
|
LIBWALLET_URL="https://github.com/decred/libwallet.git"
|
|
LIBWALLET_VERSION="v1.0.4"
|
|
|
|
if [ -e $LIBWALLET_PATH ]; then
|
|
rm -fr $LIBWALLET_PATH
|
|
fi
|
|
mkdir -p $LIBWALLET_PATH
|
|
git clone $LIBWALLET_URL $LIBWALLET_PATH
|
|
cd $LIBWALLET_PATH
|
|
git checkout $LIBWALLET_VERSION
|
|
|
|
SYSROOT=`xcrun --sdk iphoneos --show-sdk-path`
|
|
CLANG="clang -isysroot ${SYSROOT}"
|
|
CLANGXX="clang++ -isysroot ${SYSROOT}"
|
|
|
|
if [ -e ./build ]; then
|
|
rm -fr ./build
|
|
fi
|
|
CGO_ENABLED=1 GOOS=ios GOARCH=arm64 CC=$CLANG CXX=$CLANGXX \
|
|
go build -buildmode=c-archive -o ./build/libdcrwallet.a ./cgo || exit 1
|
|
|
|
CW_DECRED_DIR=${CW_ROOT}/cw_decred
|
|
HEADER_DIR=$CW_DECRED_DIR/lib/api
|
|
mv ${LIBWALLET_PATH}/build/libdcrwallet.h $HEADER_DIR
|
|
|
|
DEST_LIB_DIR=${CW_DECRED_DIR}/ios/External/lib
|
|
mkdir -p $DEST_LIB_DIR
|
|
mv ${LIBWALLET_PATH}/build/libdcrwallet.a $DEST_LIB_DIR
|
|
|
|
cd $CW_DECRED_DIR
|
|
dart run ffigen
|