Hi All,
My son is a big fan of the Minetest game. The standard pacman package crashes on startup. I have it running in Manjaro Linux on the PBP and the performance is not terrible (not optimal either though) by compiling it from sources.
Here's how I did it:
But, this is in the unstable master branch. I have a server that runs version 5.x. So, let's change branches for both git repos to stable 5.x.
I hope that these instructions help others out there doing open source gaming.
Cheers,
Chris
My son is a big fan of the Minetest game. The standard pacman package crashes on startup. I have it running in Manjaro Linux on the PBP and the performance is not terrible (not optimal either though) by compiling it from sources.
Here's how I did it:
Code:
1) git clone --depth 1 https://github.com/minetest/minetest.git
2) cd minetest/
3) git clone --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game
But, this is in the unstable master branch. I have a server that runs version 5.x. So, let's change branches for both git repos to stable 5.x.
Code:
1) git fetch origin stable-5:stable-5
2) (cd games/minetest_game; git fetch origin stable-5:stable-5)
3) cmake . -DRUN_IN_PLACE=FALSE -DENABLE_LEVELDB=OFF # See here about the leveldb problem: https://archlinuxarm.org/forum/viewtopic.php?t=14458&p=63585
4) make -j$(nproc)
5) sudo make install
I hope that these instructions help others out there doing open source gaming.
Cheers,
Chris