Moved to Minetest 5.1.1
This commit is contained in:
parent
3c974ff260
commit
a45908b74d
1
template/.DirIcon
Symbolic link
1
template/.DirIcon
Symbolic link
@ -0,0 +1 @@
|
||||
minetest.png
|
8
template/AppRun
Executable file
8
template/AppRun
Executable file
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
DIR=`dirname $0`
|
||||
|
||||
if [ "$1" = "--server" ]; then
|
||||
$DIR/usr/bin/minetestserver "$@"
|
||||
else
|
||||
$DIR/usr/bin/minetest "$@"
|
||||
fi
|
17
template/minetest.desktop
Normal file
17
template/minetest.desktop
Normal file
@ -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;
|
BIN
template/minetest.png
Normal file
BIN
template/minetest.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
6
template/usr/bin/minetest
Executable file
6
template/usr/bin/minetest
Executable file
@ -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
template/usr/bin/minetestserver
Executable file
6
template/usr/bin/minetestserver
Executable file
@ -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"
|
Loading…
x
Reference in New Issue
Block a user