Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

I just tried 0.2.x, I ended up with the same error :(

wget https://gitlab.com/lilyp/tsukundere/-/archive/0.2.x/tsukundere-0.2.x.tar.gz
tar xvf tsukundere-0.2.x.tar.gz
cd tsukundere-0.2.x/
autoreconf -vif
./configure

checking build system type… x86_64-pc-linux-gnu checking host system type… x86_64-pc-linux-gnu checking for a BSD-compatible install… /usr/bin/install -c checking whether build environment is sane… yes checking for a thread-safe mkdir -p… /usr/bin/mkdir -p checking for gawk… no checking for mawk… mawk checking whether make sets $(MAKE)… yes checking whether make supports nested variables… yes checking for guile… /usr/bin/guile checking for pkg-config… /usr/bin/pkg-config checking pkg-config is at least version 0.9.0… yes configure: checking for guile 3.0 configure: found guile 3.0 checking for guile-3.0… (cached) /usr/bin/guile checking for Guile version >= 3.0… 3.0.5 checking for guild… /usr/bin/guild checking for guile-config… /usr/bin/guile-config checking if (sdl2) is available… no configure: error: required guile module not found: (sdl2)

I don’t know if you have time/energy to deal with my problem, but if you have any thing you want me to try or to post complete logs, no probs.

Yuri stories are hard to come by sometimes ! :p

It's probably something very stupid.

Have you checked your $GUILE_LOAD_PATH? It should be something like "/usr/local/share/guile/site/3.0:/usr/share/guile/site/3.0" – chances are that the first entry is missing.

(1 edit)

Oh indeed it was !

export GUILE_LOAD_PATH=/usr/local/share/guile/site/3.0

Buuut wait for it

checking if (sdl2 image) is available… no configure: error: required guile module not found: (sdl2 image)

NOOOOES ! T_T I installed libsdl2-image-dev, doesn’t seem to help. Another variable tu set up ? :<

I think you need to reconfigure Guile-SDL2 (+ make + install), because it'll only build the parts found at configure time. Btw. you'll also need libsdl2-mixer-dev and libsdl2-ttf-dev.

Yes it made things better ! … And I’m so sorry, it’s like you are on point every time, and every time I’ve got a new thing for you U_U

configure: error: required guile module not found: (sdl2 hints)

You're still on the wrong branch. This game needs Tsukundere 0.2.x, but you're trying to compile 0.4.x. Here's a link to the 0.2.3 release.

Sooo it did build ? Sadly I redid everything for onsen, and I still get

checking if (tsukundere) is available… no configure: error: required guile module not found: (tsukundere)

:(

if you could give one try on debian/ubuntu and give the cheatsheet, I believe a lot more people will be able to play your game, it’s crazy haaard here ! °0°

I sadly don't have a Debian/Ubuntu machine. I'm living in the luxury called Guix System, which basically means none of my packages will ever lack a dependency in their closure.

That being said, you only said "it did build", not that you installed it. Can you check the contents of /usr/local/share/guile, as well as your $GUILE_LOAD_PATH in the shell you're trying to configure this game in? If that all looks fine, have a peek at the output of the Guile REPL when you enter

scheme@(guile-user)> ,use (tsukundere)

Note that the scheme@(guile-user) here is Guile REPL prompt.

I'll try compiling all the debugging steps here into a more useful README next time.

(7 edits)

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 !

(+1)

I should thank you for pointing out the flaws in my documentation. We're all learning.