Debian build help is needed #70
-
The linux build section on the main page says:
Can someone please elaborate on how to install those libraries? And where to install them from? If windows and mac can have their builds provided, can an app image be provided for the GNU? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Installing these development libraries on Debian is quite straightforward. Open a terminal and do:
This should automatically install the SDL2 dev libraries and GL dependencies. To manually install the SDL2 libraries (without package managers) you'll need to roughly follow these steps:
More details here. I'll look into adding more details/links to the build instructions to make things more accessible, especially since such questions are understandable given that there isn't a proper way of distributing the project on GNU/Linux yet. The next small release will address some issues from the previous version, bring in a few new features and include precompiled Ubuntu binaries, but a next major release would need to plan out a smooth distribution strategy. |
Beta Was this translation helpful? Give feedback.
-
Can confirm, the
Launching the game via the |
Beta Was this translation helpful? Give feedback.
Installing these development libraries on Debian is quite straightforward. Open a terminal and do:
This should automatically install the SDL2 dev libraries and GL dependencies.
To manually install the SDL2 libraries (without package managers) you'll need to roughly follow these steps:
make
to compile the SDL2 source code.make install
to install the SDL build on the system.More details here.
I'll look into adding more details/links to the build instructions to make things more accessible, especially since such questions are understa…