From: Colin Clark Date: Thu, 26 May 2022 08:34:41 +0000 (+0100) Subject: Bug fix: geeqie-install-debian.sh X-Git-Tag: gtk2final~17 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=12707286aed49bace90ac80f9baa6fda14f13f60 Bug fix: geeqie-install-debian.sh Fix errors which prevented installs. Include libgspell as optional package. --- diff --git a/geeqie-install-debian.sh b/geeqie-install-debian.sh index 1570809b..527d8917 100755 --- a/geeqie-install-debian.sh +++ b/geeqie-install-debian.sh @@ -8,7 +8,7 @@ ## Dialogs allow the user to install additional features. ## -version="2022-04-09" +version="2022-05-26" description=' Geeqie is an image viewer. This script will download, compile, and install Geeqie on Debian-based systems. @@ -79,7 +79,9 @@ libraw-dev libomp (required by libraw) libomp-dev libarchive (for compressed files e.g. zip, including timezone) -libarchive-dev" +libarchive-dev +libgspell (for spelling checks) +libgspell-1-dev" # Optional for GTK3 only optional_gtk3_array="libchamplain gtk (for GPS maps) @@ -205,7 +207,8 @@ install_options() then OLDIFS=$IFS IFS='|' - set "$options" + # shellcheck disable=SC2086 + set $options while [ $# -gt 0 ] do package_install "$1" @@ -475,7 +478,7 @@ do then if [ -z "$option_string" ] then - option_string="${install_option:+${install_option}}\n${file}\n${file}" + option_string="${install_option:+${install_option}}\n${package_title}\n${file}" else option_string="${option_string:+${option_string}}\n$install_option\n${package_title}\n${file}" fi