mirror of
https://github.com/YunoHost-Apps/minetest_ynh.git
synced 2024-09-03 20:36:00 +02:00
commit
c451dd2121
4 changed files with 17 additions and 1 deletions
|
@ -40,7 +40,7 @@ ram.runtime = "50M"
|
||||||
ask.en = "Choose a game for your server"
|
ask.en = "Choose a game for your server"
|
||||||
ask.fr = "Choissisez un jeu pour votre serveur"
|
ask.fr = "Choissisez un jeu pour votre serveur"
|
||||||
type = "select"
|
type = "select"
|
||||||
choices = ["minetest_game", "capturetheflag"]
|
choices = ["minetest_game", "capturetheflag", "mineclonia"]
|
||||||
default = "minetest_game"
|
default = "minetest_game"
|
||||||
|
|
||||||
[install.servername]
|
[install.servername]
|
||||||
|
@ -89,6 +89,11 @@ ram.runtime = "50M"
|
||||||
sha256 = "d81f4277761a072f0516e1363e7fa171a9f25b55d4c5f2e0114544fa8f9df99d"
|
sha256 = "d81f4277761a072f0516e1363e7fa171a9f25b55d4c5f2e0114544fa8f9df99d"
|
||||||
autoupdate.strategy = "latest_github_tag"
|
autoupdate.strategy = "latest_github_tag"
|
||||||
|
|
||||||
|
[resources.sources.mineclonia]
|
||||||
|
url = "https://codeberg.org/mineclonia/mineclonia/archive/0.93.1.tar.gz"
|
||||||
|
sha256 = "8be826d0105c7508e2c9356ffd2ae02d2d3d88932b1105277c0afa1b96e0d6af"
|
||||||
|
autoupdate.strategy = "latest_github_tag"
|
||||||
|
|
||||||
[resources.system_user]
|
[resources.system_user]
|
||||||
|
|
||||||
[resources.install_dir]
|
[resources.install_dir]
|
||||||
|
|
|
@ -28,6 +28,9 @@ ynh_script_progression --message="Building Minetest..."
|
||||||
if [ $game = "capturetheflag" ]; then
|
if [ $game = "capturetheflag" ]; then
|
||||||
# Download Capture The Flag
|
# Download Capture The Flag
|
||||||
ynh_setup_source --dest_dir=$install_dir/games/capturetheflag --source_id=capturetheflag
|
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
|
||||||
else
|
else
|
||||||
# Download Minetest Game
|
# Download Minetest Game
|
||||||
ynh_setup_source --dest_dir=$install_dir/games/minetest_game --source_id=minetest_game
|
ynh_setup_source --dest_dir=$install_dir/games/minetest_game --source_id=minetest_game
|
||||||
|
|
|
@ -61,6 +61,9 @@ ynh_script_progression --message="Building Minetest..."
|
||||||
if [ $game = "capturetheflag" ]; then
|
if [ $game = "capturetheflag" ]; then
|
||||||
# Download Capture The Flag
|
# Download Capture The Flag
|
||||||
ynh_setup_source --dest_dir=$install_dir/games/capturetheflag --source_id=capturetheflag
|
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
|
||||||
else
|
else
|
||||||
# Download Minetest Game
|
# Download Minetest Game
|
||||||
ynh_setup_source --dest_dir=$install_dir/games/minetest_game --source_id=minetest_game
|
ynh_setup_source --dest_dir=$install_dir/games/minetest_game --source_id=minetest_game
|
||||||
|
|
|
@ -28,3 +28,8 @@ test_format = 1.0
|
||||||
|
|
||||||
only = ["install.root", "backup_restore", "upgrade"]
|
only = ["install.root", "backup_restore", "upgrade"]
|
||||||
args.game = "capturetheflag"
|
args.game = "capturetheflag"
|
||||||
|
|
||||||
|
["Test-mineclonia"]
|
||||||
|
|
||||||
|
only = ["install.root", "backup_restore", "upgrade"]
|
||||||
|
args.game = "mineclonia"
|
||||||
|
|
Loading…
Reference in a new issue