Include a Other Software section in Help file
[geeqie.git] / web / geeqie-install-debian.sh
index 91b9ae0..9a16278 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/bash
-version="2019-08-11"
+version="2021-05-10"
 description=$'
 Geeqie is an image viewer.
 This script will download, compile, and install Geeqie on Debian-based systems.
@@ -24,6 +24,7 @@ essential_array=(
 "libglib2.0-0"
 "intltool"
 "libtool"
+"yelp-tools"
 )
 
 # Optional for both GTK2 and GTK3
@@ -66,6 +67,10 @@ optional_array=(
 "libwebp-dev"
 "libdjvulibre (for DjVu images)"
 "libdjvulibre-dev"
+"libopenjp2 (for JP2 images)"
+"libopenjp2-7-dev"
+"libraw (for CR3 images)"
+"libraw-dev"
 )
 
 # Optional for GTK3 only
@@ -286,7 +291,7 @@ Machine: $MACH" 2>/dev/null
        exit
 fi
 
-# Parse the comand line
+# Parse the command line
 OPTS=$(getopt -o vhc:t:b:d: --long version,help,commit:,tag:,back:,debug: -- "$@")
 eval set -- "$OPTS"