-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
minetest.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |