How do I install Qolibri from source code?
Matthew Barrera
Qolibri is a EPWING Dictionary/Book Viewer. The official site can be located here:
I'm trying to install 'qolibri-1.0.4.src.tar.gz'. Link is here:
I tried following theinstructions: I installed Qt5 library. I couldn't find 'eblib'. I presume it's a library but I wasn't able to find it. The 'eblib' link does not work. I was given a different link but I don't know what to do with file.
In the terminal I changed directory into the file, I entered 'qmake', 'make'. Finally 'make install': I was given this
I looked in the file and the internet and I couldn't find a way to install this, it seems to work fine on Windows but I wouldn't know from first-hand experience. If anyone could please let me know how I can get Qolibri up and running that would be great.
Thank you for your time.
2 Answers
You can install EB library from repository:
sudo apt-get install libeb16-dev eb-utils eb-docThen you can compile and install qolibri with the following actions:
sudo apt-get install build-essential qt4-qmake libqt4-dev
cd ~/Downloads
wget
tar -xzf qolibri-1.0.4.src.tar.gz
cd qolibri-1.0.4.src
qmake
make
sudo make installAfter these steps you can launch qolibri.
For your information - Ubuntu also has EBView (EPWING dictionary viewer) in the repository, you can install it with
sudo apt-get install ebview The page mentioned in the "instructions" was closed long thime ago. Only the link below is alive still. Try this: EB Library - ftp://
1