From 2883085f3e826d774f7fb7e0958875940e771850 Mon Sep 17 00:00:00 2001 From: numerys Date: Thu, 23 Mar 2023 23:26:02 +0100 Subject: [PATCH] gscan2pdf: corrected patch --- srcpkgs/gscan2pdf/patches/tesseract.patch | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/srcpkgs/gscan2pdf/patches/tesseract.patch b/srcpkgs/gscan2pdf/patches/tesseract.patch index dd28bb2618a5..52ac12e7b450 100644 --- a/srcpkgs/gscan2pdf/patches/tesseract.patch +++ b/srcpkgs/gscan2pdf/patches/tesseract.patch @@ -13,13 +13,11 @@ # we can use --list-langs and not bother with tessdata ( undef, my $out, my $err ) = - Gscan2pdf::Document::exec_command( [ 'tesseract', '-v' ] ); -- if ( $err =~ /^tesseract[ ]([\d.]+)/xsm ) { + Gscan2pdf::Document::exec_command( [ 'tesseract-ocr', '-v' ] ); -+ if ( $err =~ /^tesseract-ocr[ ]([\d.]+)/xsm ) { + if ( $err =~ /^tesseract[ ]([\d.]+)/xsm ) { $version = $1; } -- elsif ( $out =~ /^tesseract[ ]([\d.]+)/xsm ) { -+ elsif ( $out =~ /^tesseract-ocr[ ]([\d.]+)/xsm ) { + elsif ( $out =~ /^tesseract[ ]([\d.]+)/xsm ) { $version = $1; } if ( not $version ) { return }