1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/calibreweb_ynh.git synced 2024-09-03 18:16:20 +02:00

Update & document dependencies

This commit is contained in:
Krakinou 2023-11-11 13:15:50 +01:00
parent 751efa4b11
commit c14b54d74a

View file

@ -106,5 +106,15 @@ ram.runtime = "200M"
main.default = 8083 main.default = 8083
[resources.apt] [resources.apt]
packages = [ "sqlite3", "imagemagick", "libldap2-dev", "libsasl2-dev", "python3-venv", "python3-dev", "python3-lxml", "libjpeg-dev", "zlib1g-dev", "libffi-dev" ] #sqlite3 is required to tweak the database in the scripts
#imagemagick is required for cover extraction from EPUBs
#python3-venv is required for installing a venv environnement in the scripts
#python3-dev is required for compiling the ldap dependency during pip install
#libldap2-dev is required for compiling the ldap dependency during pip install
#libsasl2-dev is required for compiling the ldap dependency during pip install
#libjpeg-dev is required for comics and image reading in browser
packages = [ "sqlite3", "imagemagick", "python3-venv", "python3-dev", "libldap2-dev", "libsasl2-dev", "libjpeg-dev" ]
#for reference, dependencies that have been removed in 0.96.21~ynh1:
#python3-lxml : not required in packages as already part of yunohost dependencies
#zlib1g-dev : is part of python3-dev dependencies : not required anymore
#libffi-dev : usage unknown