Big update, restructured everything, configuring is now easy, our own changes are preserved

master
Your Name 2012-12-16 17:24:42 +01:00
parent 9e120e130c
commit ad59ffbabf
3 changed files with 3 additions and 25 deletions

1
modfolders.example Normal file
View File

@ -0,0 +1 @@
../mods/minetest

2
singlemods.example Normal file
View File

@ -0,0 +1,2 @@
..
../games/minetest_game

View File

@ -1,25 +0,0 @@
#!/bin/bash
# updates everything & starts minetest
# in paralel
# update minetest
git pull
# rebuild minetest
cmake . -DRUN_IN_PLACE=1 -DENABLE_SOUND=0 -DBUILD_CLIENT=0 -DCMAKE_BUILD_TYPE=Release
make -j 8 &
# update minetest
cd games/minetest_game/
git pull &
cd ../..
# update other mods
cd mods/minetest/
./update.sh &
cd ../..
wait # wait until everything is up-to-date
# start the server
bin/minetestserver
exit 0