gnu: Add libungif.
* gnu/packages/image.scm (libungif): New variable.
This commit is contained in:
parent
55b596c3f5
commit
0731a47cd4
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2014 Alex Kost <alezost@gmail.com>
|
||||
;;; Copyright © 2014 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -294,6 +295,25 @@ compose, and analyze GIF images.")
|
|||
(home-page "http://giflib.sourceforge.net/")
|
||||
(license license:x11)))
|
||||
|
||||
(define-public libungif
|
||||
(package
|
||||
(name "libungif")
|
||||
(version "4.1.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://sourceforge/giflib/libungif-"
|
||||
version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"0cnksimmmjngdrys302ik1385sg1sj4i0gxivzldhgwd46n7x2kh"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("perl" ,perl))) ;package ships some perl tools
|
||||
(home-page "http://giflib.sourceforge.net/")
|
||||
(synopsis "GIF decompression library")
|
||||
(description
|
||||
"libungif is the old GIF decompression library by the GIFLIB project.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public imlib2
|
||||
(package
|
||||
(name "imlib2")
|
||||
|
|
Loading…
Reference in New Issue