diff options
author | Simon South <simon@simonsouth.net> | 2023-02-15 11:44:11 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-02-27 23:40:44 +0100 |
commit | a7458a627827a3047aed1560d0afd454296422bc (patch) | |
tree | 55d3666e47a9dd9a5a373bce4b094a8e56788c16 /gnu | |
parent | fb9124cb049061b2a51589420dd528962972b04b (diff) | |
download | guix-a7458a627827a3047aed1560d0afd454296422bc.tar.gz |
gnu: leptonica: Update to 1.83.1.
* gnu/packages/image.scm (leptonica): Update to 1.83.1. [arguments]<#:phases>: Update file name in "provide-absolute-giflib-reference" phase. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/image.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 8212407cc1..228a31c7d0 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -601,7 +601,7 @@ collection of tools for doing simple manipulations of TIFF images.") (define-public leptonica (package (name "leptonica") - (version "1.80.0") + (version "1.83.1") (source (origin (method git-fetch) @@ -610,7 +610,7 @@ collection of tools for doing simple manipulations of TIFF images.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "12ddln72z5l3icz0i9rpsfkg5xik8fcwcn8lb0cp3jigjxi8gvkg")))) + (base32 "1j7qf9flb48q0aymf0yx9rypy3bs6hfjcln08zmy8qn2qcjzrmvi")))) (build-system gnu-build-system) (native-inputs (list gnuplot ;needed for test suite @@ -642,7 +642,7 @@ collection of tools for doing simple manipulations of TIFF images.") (let ((giflib #$(this-package-input "giflib"))) ;; Add an absolute reference to giflib to avoid propagation. (with-directory-excursion (string-append #$output "/lib") - (substitute* '("liblept.la" "pkgconfig/lept.pc") + (substitute* '("libleptonica.la" "pkgconfig/lept.pc") (("-lgif") (string-append "-L" giflib "/lib -lgif")))))))))) (home-page "http://www.leptonica.com/") (synopsis "Library and tools for image processing and analysis") |