Skip to content

Commit

Permalink
Moved to Minetest 5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
An0n3m0us committed Feb 7, 2020
1 parent 3c974ff commit a45908b
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions template/.DirIcon
8 changes: 8 additions & 0 deletions template/AppRun
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
DIR=`dirname $0`

if [ "$1" = "--server" ]; then
$DIR/usr/bin/minetestserver "$@"
else
$DIR/usr/bin/minetest "$@"
fi
17 changes: 17 additions & 0 deletions template/minetest.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[Desktop Entry]
Name=Minetest
GenericName=Minetest
Comment=Multiplayer infinite-world block sandbox
Comment[de]=Mehrspieler-Sandkastenspiel mit unendlichen Blockwelten
Comment[es]=Juego sandbox multijugador con mundos infinitos
Comment[fr]=Jeu multijoueurs de type bac à sable avec des mondes infinis
Comment[ja]=マルチプレイに対応した、無限の世界のブロック型サンドボックスゲームです
Comment[ru]=Игра-песочница с безграничным миром, состоящим из блоков
Comment[tr]=Tek-Çok oyuncuyla küplerden sonsuz dünyalar inşa et
Exec=minetest
Icon=minetest
Terminal=false
Type=Application
Categories=Game;Simulation;
StartupNotify=false
Keywords=sandbox;world;mining;crafting;blocks;nodes;multiplayer;roleplaying;
Binary file added template/minetest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions template/usr/bin/minetest
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
DIR=`dirname $0`

export LD_LIBRARY_PATH="$DIR/../lib/x86_64-linux-gnu:${LD_LIBRARY_PATH}"

$DIR/minetestserver-x86_64.bin "$2" "$3"
6 changes: 6 additions & 0 deletions template/usr/bin/minetestserver
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
DIR=`dirname $0`

export LD_LIBRARY_PATH="$DIR/../lib/x86_64-linux-gnu:${LD_LIBRARY_PATH}"

$DIR/minetestserver-x86_64.bin "$2" "$3"

0 comments on commit a45908b

Please sign in to comment.