diff options
author | Leo Famulari <leo@famulari.name> | 2016-09-11 12:39:58 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-09-11 13:04:00 -0400 |
commit | 35eade9cf3b1f50818d061c64deb628ee60918fc (patch) | |
tree | 2ce1e4ad0064b2c0b73f105d1f5fe22f04306595 /gnu/packages/image.scm | |
parent | cbe2cc02fb0fe8a6291e2a1e66257d3c477678ff (diff) | |
download | patches-35eade9cf3b1f50818d061c64deb628ee60918fc.tar patches-35eade9cf3b1f50818d061c64deb628ee60918fc.tar.gz |
gnu: jbig2dec: Update to 0.13.
* gnu/packages/image.scm (jbig2dec): Update to 0.13.
[source]: Update URL.
[home-page]: Update URL.
* gnu/packages/patches/jbig2dec-ignore-testtest.patch: Adjust patch.
Diffstat (limited to 'gnu/packages/image.scm')
-rw-r--r-- | gnu/packages/image.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 47b17d49d0..d7ffa99514 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -351,15 +351,14 @@ arithmetic ops.") (define-public jbig2dec (package (name "jbig2dec") - (version "0.11") + (version "0.13") (source (origin (method url-fetch) - (uri ;; The link on the homepage is dead. - (string-append "http://distfiles.gentoo.org/distfiles/" name "-" - version ".tar.gz")) + (uri (string-append "http://downloads.ghostscript.com/public/" name "/" + name "-" version ".tar.gz")) (sha256 - (base32 "1ffhgmf2fqzk0h4k736pp06z7q5y4x41fg844bd6a9vgncq86bby")) + (base32 "04akiwab8iy5iy34razcvh9mcja9wy737civ3sbjxk4j143s1b2s")) (patches (search-patches "jbig2dec-ignore-testtest.patch")))) (build-system gnu-build-system) @@ -374,7 +373,7 @@ This is a decoder only implementation, and currently is in the alpha stage, meaning it doesn't completely work yet. However, it is maintaining parity with available encoders, so it is useful for real work.") - (home-page "http://jbig2dec.sourceforge.net/") + (home-page "http://www.ghostscript.com/jbig2dec.html") (license license:gpl2+))) (define-public openjpeg |