From 648d5ecc097dea7cc58613770f1dbba4434db82e Mon Sep 17 00:00:00 2001
From: Walmes Zeviani <walmes@ufpr.br>
Date: Mon, 2 Sep 2024 09:55:17 -0400
Subject: [PATCH] Installs epub readers.

---
 install_ubuntu_details.sh | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/install_ubuntu_details.sh b/install_ubuntu_details.sh
index 460e065..5496035 100644
--- a/install_ubuntu_details.sh
+++ b/install_ubuntu_details.sh
@@ -251,8 +251,39 @@ cd ~
 #-----------------------------------------------------------------------
 # To read MOBI, EPUB, etc.
 
+# https://www.calibre-ebook.com/
+# Best option, lots of customization.
+sudo apt install calibre
+
+# https://johnfactotum.github.io/foliate/
 sudo snap install foliate
 
+# https://fbreader.org/en/linux
+sudo apt install fbreader
+
+# https://github.com/babluboy/bookworm
+# Dependencies.
+sudo apt-get install unzip poppler-utils unar html2text python2.7 \
+    libgtk-3-dev libgee-0.8-dev libgranite-dev libsqlite3-dev \
+    libxml2-dev webkit2gtk-4.0 libwebkit2gtk-4.0-37 \
+    libpoppler-glib-dev \
+    meson valac gettext curl ninja-build appstream git
+
+# Clone and install.
+cd ~/Documents
+git clone https://github.com/babluboy/bookworm.git
+cd bookworm
+meson build --prefix=/usr
+mkdir -p build && cd build
+ninja
+sudo ninja install
+
+# Call the application.
+com.github.babluboy.bookworm
+
+# https://github.com/oguzhaninan/Buka
+sudo snap install buka
+
 #-----------------------------------------------------------------------
 # Imaginary Teleprompter.
 # https://snapcraft.io/install/imaginary-teleprompter/ubuntu
-- 
GitLab