Oh my bad ! It didn’t build, I had texinfo dependency missing and it put a big warning which… Hided the final error about it being fatal ; it’s on me, I was too hasty :-(
Here it is for debian users (and it should work for ubuntu/mint too I guess) !
# The tricky prerequisits
sudo apt install libsdl2-dev guile-3.0-dev texinfo libsdl2-mixer-dev libsdl2-ttf-dev fonts-liberation
export GUILE_LOAD_PATH=/usr/local/share/guile/site/3.0
# sdl2
cd /tmp
wget https://files.dthompson.us/guile-sdl2/guile-sdl2-0.5.0.tar.gz
tar xvf guile-sdl2-0.5.0.tar.gz
cd guile-sdl2-0.5.0
./configure
make
sudo make install
# tsukindere
cd /tmp
wget https://gitlab.com/lilyp/tsukundere/-/archive/0.2.3/tsukundere-0.2.3.tar.gz
tar xvf tsukundere-0.4.x.tar.gz
cd tsukundere-0.4.x
autoreconf -vif
./configure
make
sudo make install
# THE GAME FINALLY which you already downloaded ages ago but wouldn't install !
cd onsen-ningyo-1.0
autoreconf -vif
./configure --with-default-font=/usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf --with-bold-font=/usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf
make
sudo make install
#LAUNCH IT !!!
onsen-ningyo
Thanks again for your helpfulness ! No time to play it but it launches, and after work I know what I’ll do ! :3
I think you should consider putting an example of “should work on X major distro by following theses steps”. I’m no dev, so the README with “non-specific steps & no dependency list” scared me, you really had to take me by the hand !