mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
14 lines
No EOL
306 B
Bash
Executable file
14 lines
No EOL
306 B
Bash
Executable file
#!/bin/bash
|
|
# install go > 1.21:
|
|
brew install go
|
|
export PATH=$PATH:~/go/bin
|
|
go install golang.org/x/mobile/cmd/gomobile@latest
|
|
gomobile init
|
|
# build mwebd:
|
|
git clone https://github.com/ltcmweb/mwebd
|
|
cd mwebd
|
|
gomobile bind -target=ios .
|
|
mv -fn ./Mwebd.xcframework ../../../ios/
|
|
# cleanup:
|
|
cd ..
|
|
rm -rf mwebd |