vol.2 wrote: ↑Mon Jun 17, 2019 2:22 pm
Is there some kind of generic guide to building things on raspbian? Or is this way easier than I think possibly?
In my experience it's either simple or a journey through various 'circles of hell'.
A lot depends on how well the installation process has been documented, whether for a Pi or something else, how easy it is to guess what might need to be done when that doesn't work, and that depends on one's own experience and knowledge.
The usual 'dive-in and try it' process is to download the source, unzip or untar it, go into its source directory and see what's there -
Code: Select all
wget http://s3.jspenguin.org/LAB3D-SDL-3.0-src.tar.gz
tar -zxvf LAB3D-SDL-3.0-src.tar.gz
cd LAB3D-SDL-3.0
ls
There's a "README.txt" which is always worth looking in, and that says installation instructions are in 'install.txt'. A shame that doesn't actually exist.
But there's a "Makefile" and that usually suggests running "make" -
That almost worked, but failed for me with -
Code: Select all
fatal error: SDL_endian.h: No such file or directory
#include <SDL_endian.h>
I would guess that needs SDL installing then "make" running again.
But I have no idea on how to get SDL installed and how to make the file you need to exist to appear. And I bet you don't either.
I'd give that a whirl though because you may get further than I have.
Welcome to those circles of hell
