]> gitweb.hhaalo.de Git - scantopdf.git/commitdiff
add dependency exiftool
authorBastian Dehn <hhaalo@arcor.de>
Tue, 22 Jul 2025 17:16:02 +0000 (19:16 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Tue, 22 Jul 2025 17:17:58 +0000 (19:17 +0200)
src/control
src/scanbasic.sh

index 803d8e5ccb5c130c5835b0e33b8d1c66add96dfe..397c383926de68f3f6041f67a8a567f562794c26 100644 (file)
@@ -2,5 +2,5 @@ Package: scantopdf
 Version: $VERSION
 Architecture: amd64
 Maintainer: Bastian Dehn <hhaalo@arcor.de>
-Depends: sane (>= 1.0.14), qpdf (>= 11.3.0), pdftk (>= 2.02), libtiff-tools (>= 4.5.0), ocrmypdf (>= 14.0.1), tesseract-ocr-deu (>= 4.1.0), zbar-tools (>= 0.23.92), qrencode (>= 4.1.), librsvg2-bin (>= 2.54.7)
+Depends: sane (>= 1.0.14), qpdf (>= 11.3.0), pdftk (>= 2.02), libtiff-tools (>= 4.5.0), ocrmypdf (>= 14.0.1), tesseract-ocr-deu (>= 4.1.0), zbar-tools (>= 0.23.92), qrencode (>= 4.1.), librsvg2-bin (>= 2.54.7), libimage-exiftool-perl (>=12.57+dfsg-1)
 Description: scan to pdf with ocr scripts for sane-kds-s2000w-net
index f31bcbfbeefa425335095e4ce67e8654fc921fa5..a2246cbd545976518b603963cf1735f763c3431b 100644 (file)
@@ -31,6 +31,9 @@ check_commands()
        command -v tiff2pdf > /dev/null \
                || errlog "command tiff2pdf not found" \
                || return $?
+       command -v exiftool > /dev/null \
+               || errlog "command exiftool not found" \
+               || return $?
 }
 
 optimize()