gnu: Add libjpeg-turbo.
* gnu/packages/image.scm (libjpeg-turbo): New variable.
This commit is contained in:
parent
dc2ef09ad7
commit
37e05d64e4
|
@ -31,6 +31,7 @@
|
||||||
(define-module (gnu packages image)
|
(define-module (gnu packages image)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages algebra)
|
#:use-module (gnu packages algebra)
|
||||||
|
#:use-module (gnu packages assembly)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages boost)
|
#:use-module (gnu packages boost)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
|
@ -1016,3 +1017,33 @@ also converts external formats (BMP, GIF, PNM and TIFF) to optimized
|
||||||
PNG, and performs PNG integrity checks and corrections.")
|
PNG, and performs PNG integrity checks and corrections.")
|
||||||
(home-page "http://optipng.sourceforge.net/")
|
(home-page "http://optipng.sourceforge.net/")
|
||||||
(license license:zlib)))
|
(license license:zlib)))
|
||||||
|
|
||||||
|
(define-public libjpeg-turbo
|
||||||
|
(package
|
||||||
|
(name "libjpeg-turbo")
|
||||||
|
(version "1.5.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://sourceforge/" name "/" version "/"
|
||||||
|
name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0v365hm6z6lddcqagjj15wflk66rqyw75m73cqzl65rh4lyrshj1"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("nasm" ,nasm)))
|
||||||
|
(arguments
|
||||||
|
`(#:test-target "test"))
|
||||||
|
(home-page "http://www.libjpeg-turbo.org/")
|
||||||
|
(synopsis "SIMD-accelerated JPEG image handling library")
|
||||||
|
(description "libjpeg-turbo is a JPEG image codec that accelerates baseline
|
||||||
|
JPEG compression and decompression using SIMD instructions: MMX on x86, SSE2 on
|
||||||
|
x86-64, NEON on ARM, and AltiVec on PowerPC processors. Even on other systems,
|
||||||
|
its highly-optimized Huffman coding routines allow it to outperform libjpeg by
|
||||||
|
a significant amount.
|
||||||
|
libjpeg-turbo implements both the traditional libjpeg API and the less powerful
|
||||||
|
but more straightforward TurboJPEG API, and provides a full-featured Java
|
||||||
|
interface. It supports color space extensions that allow it to compress from
|
||||||
|
and decompress to 32-bit and big-endian pixel buffers (RGBX, XBGR, etc.).")
|
||||||
|
(license (list license:bsd-3 ; jsimd*.[ch] and most of simd/
|
||||||
|
license:ijg)))) ; the rest
|
||||||
|
|
Loading…
Reference in New Issue