#!/bin/bash
clear
me = ` basename " $0 " `
echo
echo
echo
scripting_rc_path = ~/.config/EnlivenMinetest/scripting.rc
if [ -f " $EM_CONFIG_PATH /scripting.rc " ] ; then
echo " * [ $MT_ENV_RUP_NAME ] using $scripting_rc_path ... "
source $scripting_rc_path
fi
if [ -z " $REPO_PATH " ] ; then
REPO_PATH = " $HOME /git/EnlivenMinetest "
fi
MT_BASH_RC_NAME = "minetestenv-in-place.rc"
CURRENT_MT_SCRIPTS_DIR = " $HOME /.local/bin "
MT_BASH_RC_PATH = " $CURRENT_MT_SCRIPTS_DIR / $MT_BASH_RC_NAME "
TRY_CURRENT_MT_SCRIPTS_DIR = " $REPO_PATH "
TRY_MT_BASH_RC_PATH = " $TRY_CURRENT_MT_SCRIPTS_DIR / $MT_BASH_RC_NAME "
if [ -f " $TRY_MT_BASH_RC_PATH " ] ; then
CURRENT_MT_SCRIPTS_DIR = " $TRY_CURRENT_MT_SCRIPTS_DIR "
MT_BASH_RC_PATH = " $TRY_MT_BASH_RC_PATH "
#fi
#if [ ! -f "$MT_BASH_RC_PATH" ]; then
else
if [ ! -d " $CURRENT_MT_SCRIPTS_DIR " ] ; then
mkdir -p " $CURRENT_MT_SCRIPTS_DIR "
fi
MT_BASH_RC_URL = https://raw.githubusercontent.com/poikilos/EnlivenMinetest/master/$MT_BASH_RC_NAME
curl $MT_BASH_RC_URL -o " $MT_BASH_RC_PATH "
if [ $? -ne 0 ] ; then
#if [ ! -f "$MT_BASH_RC_PATH" ]; then
# This is necessary on cygwin for some reason.
curl $MT_BASH_RC_URL > " $MT_BASH_RC_PATH "
fi
#if [ $? -ne 0 ]; then
if [ ! -f " $MT_BASH_RC_PATH " ] ; then
# This is necessary on cygwin for some reason.
wget -O " $MT_BASH_RC_PATH " $MT_BASH_RC_URL
fi
if [ $? -ne 0 ] ; then
echo
echo " ERROR: Downloading $MT_BASH_RC_URL to $MT_BASH_RC_PATH failed. "
echo
sleep 10
exit 1
fi
fi
if [ ! -f " $MT_BASH_RC_PATH " ] ; then
echo
echo " $MT_BASH_RC_PATH is not present. "
echo
sleep 10
exit 1
fi
source $MT_BASH_RC_PATH
# ^ same as install-minetest-linux64.sh
INSTALL_MTS_NAME = "install-mts.sh"
echo "* starting install from source..."
date
enable_server = true
dest_programs = " $HOME "
#NOTE: $HOME is still used further down, for $HOME/.* and $HOME/i_am_dedicated_minetest_server flag file (which can be empty)
#TODO: change $HOME/i_am_dedicated_minetest_server to $HOME/.config/EnlivenMinetest/i_am_dedicated_minetest_server or rc file
EXTRACTED_SRC_NAME = "linux-minetest-kit"
# EM_CONFIG_PATH is from "minetestenv-in-place.rc".
EXTRACTED_SRC_PATH = " $EM_CONFIG_PATH / $EXTRACTED_SRC_NAME "
cd " $EM_CONFIG_PATH " || customExit " [ $INSTALL_MTS_NAME ] cd \" $EM_CONFIG_PATH \" failed. "
flag_dir_rel = " $EXTRACTED_SRC_NAME /mtsrc "
code_flag_dir_path = " $EXTRACTED_SRC_PATH /mtsrc "
if [ -z " $CUSTOM_SCRIPTS_PATH " ] ; then
CUSTOM_SCRIPTS_PATH = " $HOME "
fi
MT_POST_INSTALL_SCRIPT_1 = archive-minetestserver-debug.sh
# scripting_rc_path is set in minetestenv-in-place.rc
if [ -z " $MT_POST_INSTALL_SCRIPT_2 " ] ; then
MT_POST_INSTALL_SCRIPT_2 = "mts.sh"
if [ -f " $CUSTOM_SCRIPTS_PATH /mts-CenterOfTheSun.sh " ] ; then
MT_POST_INSTALL_SCRIPT_2 = "mts-CenterOfTheSun.sh"
else
if [ ! -f $CUSTOM_SCRIPTS_PATH /$MT_POST_INSTALL_SCRIPT_2 ] ; then
cat <<END
* If $MT_POST_INSTALL_SCRIPT_2 were in $CUSTOM_SCRIPTS_PATH , then it
will run after compiling is finished. You can also set
MT_POST_INSTALL_SCRIPT_2 to determine what filename to run, and set
CUSTOM_SCRIPTS_PATH to determine where it ( and
$MT_POST_INSTALL_SCRIPT_1 which runs first if present there) is
located. You can set the variables in
$scripting_rc_path or the environment.
END
fi
fi
fi
if [ -z " $ENABLE_CLIENT " ] ; then
ENABLE_CLIENT = false
fi
#pushd "$EXTRACTED_SRC_PATH" || customExit "pushd \"$EXTRACTED_SRC_PATH\" failed in \"`pwd`\""
extra_options = ""
for var in " $@ "
do
if [ " @ $var " = "@--client" ] ; then
ENABLE_CLIENT = true
elif [ " @ $var " = "@--clean" ] ; then
enable_clean = true
echo "* --clean is deprecated."
elif [ " @ $var " = "@--noclean" ] ; then
enable_clean = false
echo "* --noclean is deprecated."
else
customExit " Invalid argument: $var "
fi
done
if [ -z " $enable_clean " ] ; then
enable_clean = true
fi
# echo "enable_clean=\"$enable_clean\"..."
# flag_icon="$HOME/Desktop/org.minetest.minetest.desktop"
good_src_mts = " $EXTRACTED_SRC_PATH /minetest/bin/minetestserver "
good_src_mt = " $EXTRACTED_SRC_PATH /minetest/bin/minetest "
this_src_flag_path = " $good_src_mts "
good_dst_mts = " $dest_programs /minetest/bin/minetestserver "
good_dst_mt = " $dest_programs /minetest/bin/minetest "
this_dst_flag_path = " $good_dst_mts "
if [ -f " $good_dst_mt " ] ; then
ENABLE_CLIENT = true
echo "* automatically adding --client to compile since detected"
echo " ' $good_dst_mt ' "
# echo "--press Ctrl C to cancel..."
# sleep 2
fi
if [ " @ $ENABLE_CLIENT " = "@true" ] ; then
this_src_flag_path = " $good_src_mt "
this_dst_flag_path = " $good_dst_mt "
extra_options = "--client"
fi
#if [ -f "$this_src_flag_path" ]; then
#rm -f "$this_src_flag_path"
#fi
#if [ -f "$this_src_flag_path" ]; then
#echo "ERROR: Nothing done since can't remove old '$this_src_flag_path'"
#exit 1
#fi
enable_compile = true
has_any_binary = false
if [ -f " $good_src_mts " ] ; then
has_any_binary = true
fi
if [ -f " $good_src_mt " ] ; then
has_any_binary = true
fi
if [ " @ $has_any_binary " = = "@true" ] ; then
enable_compile = false
if [ " @ $ENABLE_CLIENT " = "@true" ] ; then
if [ ! -f " $good_src_mt " ] ; then
enable_compile = true
echo "* enabling compile (since no `pwd`/minetest/bin/minetest but client install is enabled)"
fi
fi
if [ " @ $enable_server " = "@true" ] ; then
if [ ! -f " $good_src_mts " ] ; then
enable_compile = true
echo "* enabling compile (since no `pwd`/minetest/bin/minetestserver)"
fi
fi
else
echo " * enabling compile since neither \" $good_src_mts \" nor \" $good_src_mt \" are present. "
fi
if [ " @ $enable_compile " = "@true" ] ; then
echo " * checking if the compile library script extracted the program source yet ( $code_flag_dir_path )... "
if [ ! -d " $code_flag_dir_path " ] ; then
cat <<END
ERROR: missing $flag_dir_rel
- If you do not have an extracted minetest source directory which
is normally extracted by the library build script, you must add
that--it can be automatically added by running:
bash reset-minetest-install-source.sh
END
exit 1
fi
start = ` date +%s`
cd " $EXTRACTED_SRC_PATH " || customExit " cd \" $EXTRACTED_SRC_PATH \" failed. "
if [ -f "mtcompile-program.pl" ] ; then
# perl mtcompile-program.pl build >& program.log
echo "Compiling via perl (this may take a while--output redirected to `pwd`/program.log)..."
perl mtcompile-program.pl build --server $extra_options >& program.log
else
# NOTE: no pl in $EXTRACTED_SRC_NAME, assuming bash:
if [ -f mtcompile-program.sh ] ; then
echo "Compiling via bash (this may take a while--output redirected to `pwd`/program.log)..."
bash -e mtcompile-program.sh build --server $extra_options >& program.log
else
echo
echo "ERROR: Install cannot finish since there is no"
echo " mtcompile-program.pl nor mtcompile-program.pl"
echo " in the extracted $EXTRACTED_SRC_NAME directory. "
echo
echo
fi
fi
end = ` date +%s`
compile_time = $(( end-start))
echo " Compiling the program finished in $compile_time seconds. "
cp $EXTRACTED_SRC_PATH /release.txt $EXTRACTED_SRC_PATH /minetest/ || customWarn " Cannot copy $EXTRACTED_SRC_PATH /release.txt to $EXTRACTED_SRC_PATH /minetest/ "
else
echo " * using existing $EXTRACTED_SRC_PATH /minetest... "
fi
if [ ! -f " $this_src_flag_path " ] ; then
customExit " The build did not complete since ' $this_src_flag_path ' is missing. Maybe you didn't compile the libraries. Running reset-minetest-install-source.sh should do that automatically, but you can also do: cd $EXTRACTED_SRC_PATH && ./mtcompile-libraries.sh build "
fi
if [ -f " $this_dst_flag_path " ] ; then
mv -f " $this_dst_flag_path " " $this_dst_flag_path .bak "
fi
if [ -f " $this_dst_flag_path " ] ; then
customExit " Install is incomplete because it can't move ' $this_dst_flag_path '. "
fi
if [ ! -d " $EXTRACTED_SRC_PATH /minetest " ] ; then
customExit " Install is incomplete because \" $EXTRACTED_SRC_PATH /minetest\" is missing. "
fi
echo "* finished compiling."
INSTALL_PATH = " $HOME /minetest "
echo "* installing Minetest..."
if [ -z " $EM_TMP " ] ; then
customWarn "EM_TMP was not set."
EM_TMP = "/tmp/EnlivenMintest"
fi
tmp_mt_copy = $EM_TMP /minetest
if [ -d " $tmp_mt_copy " ] ; then
echo " * removing old $tmp_mt_copy ... "
rm -Rf " $tmp_mt_copy " || customExit " rm -Rf \" $tmp_mt_copy \" failed. "
fi
old_release_line =
old_release_version =
detect_installed_mt_version "1st" "bak"
echo " * making temporary copy at $tmp_mt_copy ... "
cp -R " $EXTRACTED_SRC_PATH /minetest " " $tmp_mt_copy "
detect_mt_version_at " $tmp_mt_copy "
installOrUpgradeMinetest " $tmp_mt_copy " " $INSTALL_PATH "
echo " - old: $old_release_version ; new: $new_release_version "
echo "* installing ENLIVEN..."
installOrUpgradeENLIVEN " $INSTALL_PATH "
echo "* analyzing settings..."
analyzeGameSettings $EXTRACTED_SRC_PATH /minetest/games/Bucket_Game
if [ " @ $enable_run_after_compile " = "@true" ] ; then
echo "Trying to run minetest or other custom post-install script"
echo " (enable_run_after_compile is true in ' $scripting_rc_path '). "
if [ -d " $CUSTOM_SCRIPTS_PATH " ] ; then
cd " $CUSTOM_SCRIPTS_PATH " || customExit " cd $CUSTOM_SCRIPTS_PATH failed. "
if [ -f " $MT_POST_INSTALL_SCRIPT_1 " ] ; then
./$MT_POST_INSTALL_SCRIPT_1
echo " NOTE: if you put $MT_POST_INSTALL_SCRIPT_1 "
echo " in `pwd`, it would run at this point if"
echo " marked executable."
fi
if [ -f " $MT_POST_INSTALL_SCRIPT_2 " ] ; then
./$MT_POST_INSTALL_SCRIPT_2
echo " $MT_POST_INSTALL_SCRIPT_2 finished (exit code $? ) "
else
cat <<END
ERROR: enable_run_after_compile is true, but
'$MT_POST_INSTALL_SCRIPT_2' is not in
'$CUSTOM_SCRIPTS_PATH' .
Try setting CUSTOM_SCRIPTS_PATH and MT_POST_INSTALL_SCRIPT_2 in
'$scripting_rc_path'
END
fi
#popd
else
cat <<END
ERROR: enable_run_after_compile is true, but
'$CUSTOM_SCRIPTS_PATH'
does not exist. Try setting CUSTOM_SCRIPTS_PATH in
'$scripting_rc_path' .
END
fi
fi
echo "* done"
echo " $enliven_warning "
echo
echo