2024-05-01 15:47:11 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -x -e
|
|
|
|
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
|
|
|
if [[ ! -d "monero_c" ]];
|
|
|
|
then
|
|
|
|
git clone https://github.com/mrcyjanek/monero_c --branch rewrite-wip
|
|
|
|
cd monero_c
|
2024-05-29 13:06:32 +00:00
|
|
|
git checkout 81bd1208c4734c370f22fdf26932371f30d10fb6
|
2024-05-01 15:47:11 +00:00
|
|
|
git reset --hard
|
|
|
|
git submodule update --init --force --recursive
|
|
|
|
./apply_patches.sh monero
|
|
|
|
./apply_patches.sh wownero
|
|
|
|
else
|
|
|
|
cd monero_c
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ! -f "monero/.patch-applied" ]];
|
|
|
|
then
|
|
|
|
./apply_patches.sh monero
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ! -f "wownero/.patch-applied" ]];
|
|
|
|
then
|
|
|
|
./apply_patches.sh wownero
|
|
|
|
fi
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
echo "monero_c source prepared".
|