2017-06-09 14:03:32 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
# GENERIC START
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-10-26 22:42:12 +02:00
|
|
|
source _common.sh
|
2020-06-07 10:47:21 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-06-09 14:03:32 +02:00
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2019-04-21 15:32:30 +02:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..."
|
|
|
|
|
2024-01-08 13:13:58 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2021-05-16 18:15:51 +02:00
|
|
|
|
2024-01-08 13:13:58 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2021-05-16 18:15:51 +02:00
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
# BUILDING
|
2019-04-21 15:32:30 +02:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
ynh_script_progression --message="Building Minetest..."
|
|
|
|
|
2024-05-16 11:50:17 +02:00
|
|
|
ynh_setup_source --dest_dir=$install_dir/games/$game --source_id=$game
|
2019-10-22 17:52:18 +02:00
|
|
|
|
2024-01-05 14:52:33 +01:00
|
|
|
# Install IrrlichtMt
|
2024-01-08 13:13:58 +01:00
|
|
|
ynh_setup_source --dest_dir=$install_dir/lib/irrlichtmt --source_id=irrlichtmt
|
2024-01-05 14:52:33 +01:00
|
|
|
|
2024-01-08 13:13:58 +01:00
|
|
|
pushd $install_dir
|
2021-05-19 21:12:05 +02:00
|
|
|
ynh_exec_warn_less cmake . -DRUN_IN_PLACE=TRUE -DENABLE_LUAJIT=TRUE -DBUILD_CLIENT=FALSE -DBUILD_SERVER=TRUE
|
2019-04-21 15:32:30 +02:00
|
|
|
|
2021-05-19 21:12:05 +02:00
|
|
|
ynh_exec_warn_less make -j$(nproc)
|
2019-10-23 12:06:42 +02:00
|
|
|
popd
|
2017-06-09 14:03:32 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-06-19 04:22:13 +02:00
|
|
|
# ADD A CONFIGURATION
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
ynh_script_progression --message="Adding a configuration file..."
|
2017-06-09 14:03:32 +02:00
|
|
|
|
2024-01-08 13:29:31 +01:00
|
|
|
ynh_add_config --template="minetest.conf" --destination="$data_dir/.minetest/minetest.conf"
|
2022-06-19 04:22:13 +02:00
|
|
|
|
2024-01-08 13:13:58 +01:00
|
|
|
chmod 400 "$data_dir/.minetest/minetest.conf"
|
|
|
|
chown $app:$app "$data_dir/.minetest/minetest.conf"
|
2019-04-21 15:32:30 +02:00
|
|
|
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
2022-06-19 04:22:13 +02:00
|
|
|
# SETUP SYSTEMD
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
2022-06-19 04:22:13 +02:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..."
|
2019-08-15 14:21:00 +02:00
|
|
|
|
2022-06-19 04:22:13 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
2017-10-20 10:16:34 +02:00
|
|
|
|
2022-06-19 04:22:13 +02:00
|
|
|
mkdir -p /var/log/$app
|
|
|
|
chown -R $app:$app /var/log/$app
|
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
2020-12-03 11:33:58 +01:00
|
|
|
yunohost service add $app --description="Voxel game engine and game" --log="/var/log/$app/$app.log" --needs_exposed_ports="$port"
|
2019-04-21 15:32:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2019-04-21 15:32:30 +02:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2019-04-21 15:32:30 +02:00
|
|
|
|
2021-05-16 18:15:51 +02:00
|
|
|
# Start a systemd service
|
2024-01-08 15:00:16 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match="listening on"
|
2019-04-21 15:32:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
|
|
|
|
2021-05-16 18:15:51 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|