1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/photoview_ynh.git synced 2024-09-03 20:05:55 +02:00

Make Darktable optional

This commit is contained in:
Jules Bertholet 2021-04-22 15:37:43 -04:00
parent 24ec2129da
commit 3b23b865ad

View file

@ -5,7 +5,11 @@
#================================================= #=================================================
# dependencies used by the app # dependencies used by the app
pkg_dependencies="curl gpg libdlib19 ffmpeg exiftool libheif1 darktable ca-certificates golang libdlib-dev libblas-dev liblapack-dev libjpeg-dev libheif-dev build-essential pkg-config autoconf automake libx265-dev libde265-dev libaom-dev" pkg_dependencies="curl gpg libdlib19 ffmpeg exiftool libheif1 ca-certificates golang libdlib-dev libblas-dev liblapack-dev libjpeg-dev libheif-dev build-essential pkg-config autoconf automake libx265-dev libde265-dev libaom-dev"
if ! (apt-cache -q=0 show darktable |& grep ': No packages found' &>/dev/null); then
pkg_dependencies="$pkg_dependencies darktable"
fi
#================================================= #=================================================
# PERSONAL HELPERS # PERSONAL HELPERS