4
0
Fork 0
Αυτό το commit περιλαμβάνεται σε:
Fanis Dokianakis 2024-08-03 20:11:09 +03:00
γονέας 6881133236
commit e3de307c16
3 αρχεία άλλαξαν με 58 προσθήκες και 0 διαγραφές

21
build.sh Κανονικό αρχείο

@ -0,0 +1,21 @@
#!/bin/bash
# clone mercury repo
git clone --depth 1 https://github.com/kgaughan/mercury.git mercury_git
# apply patches
cd mercury
for p in ../patches/*.patch; do
git apply ${p}
done
# build
make build
if [ -e mercury ]; then
mv mercury ../
else
exit 1
fi
./mercury --config planet.toml