1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/minetest_ynh.git synced 2024-09-03 20:36:00 +02:00

Merge branch 'testing' into pr/67

This commit is contained in:
Éric Gaspar 2024-05-16 12:31:33 +02:00
commit a6140cb2da
2 changed files with 6 additions and 41 deletions

View file

@ -24,20 +24,7 @@ chown -R $app:$app "$install_dir"
#=================================================
ynh_script_progression --message="Building Minetest..."
# Install the game
if [ $game = "capturetheflag" ]; then
# Download Capture The Flag
ynh_setup_source --dest_dir=$install_dir/games/capturetheflag --source_id=capturetheflag
elif [ $game = "mineclonia" ]; then
# Download Mineclonia
ynh_setup_source --dest_dir=$install_dir/games/mineclonia --source_id=mineclonia
elif [ $game = "mineclone2" ]; then
# Download Mineclone2
ynh_setup_source --dest_dir=$install_dir/games/mineclone2 --source_id=mineclone2
else
# Download Minetest Game
ynh_setup_source --dest_dir=$install_dir/games/minetest_game --source_id=minetest_game
fi
ynh_setup_source --dest_dir=$install_dir/games/$game --source_id=$game
# Install IrrlichtMt
ynh_setup_source --dest_dir=$install_dir/lib/irrlichtmt --source_id=irrlichtmt

View file

@ -9,12 +9,6 @@
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
@ -22,7 +16,7 @@ upgrade_type=$(ynh_check_app_version_changed)
#=================================================
ynh_script_progression --message="Stopping a systemd service..."
ynh_systemd_action --service_name=$app --action="stop"
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
@ -38,14 +32,10 @@ fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Upgrading source files..." --weight=1
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=1
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --full_replace=1
fi
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --full_replace=1
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
@ -58,19 +48,7 @@ chown -R $app:$app "$install_dir"
ynh_script_progression --message="Building Minetest..."
# Install the game
if [ $game = "capturetheflag" ]; then
# Download Capture The Flag
ynh_setup_source --dest_dir=$install_dir/games/capturetheflag --source_id=capturetheflag
elif [ $game = "mineclonia" ]; then
# Download Mineclonia
ynh_setup_source --dest_dir=$install_dir/games/mineclonia --source_id=mineclonia
elif [ $game = "mineclone2" ]; then
# Download Mineclone2
ynh_setup_source --dest_dir=$install_dir/games/mineclone2 --source_id=mineclone2
else
# Download Minetest Game
ynh_setup_source --dest_dir=$install_dir/games/minetest_game --source_id=minetest_game
fi
ynh_setup_source --dest_dir=$install_dir/games/$game --source_id=$game
# Install IrrlichtMt
ynh_setup_source --dest_dir=$install_dir/lib/irrlichtmt --source_id=irrlichtmt