Convert your djvu ebook to pdf

Required tools

Two things are necessary to get this job done : djvulibre et ps2pdf.

djvulibre

Grab the files you need on the download page of the project. If you are using any type of linux distribution, I highly recommend to get the sources and compile them yourself (check the INSTALL file in the archive).
# From inside the extracted folder.
./configure
make
make install
# That's all ! Check if it is properly installed :
man djvu # You should see the documentation.

GhostScript

For most linux distributions, a package should be already available. If not, or if you are using another system (mac or windows) check the documentation.

# For most linux distribution, just install it.
# using your package manager
sudo apt install ghostscript
# Check the installation by getting the documentation :
man ps2pdf

Convert the files

# Quite simple !
# For linux (and almost certainly for mac systems too) :
# Fist convert the djvu file to PostScript.
djvups your_file.djvu your_file.ps
# Finally convert the postscript file to a pdf :
ps2pdf your_file.ps your_file.pdf

That is all. You should note that the conversion from PostScript to pdf might take a long time for huge files.