gnu: texinfo: Update to 5.0.

* gnu/packages/texinfo.scm (texinfo): Update to 5.0.
This commit is contained in:
Ludovic Courtès 2013-02-17 15:01:52 +01:00
parent e49951eb3e
commit a24b75d8e1
1 changed files with 15 additions and 17 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -22,28 +22,26 @@
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (gnu packages compression) #:use-module (gnu packages compression)
#:use-module (gnu packages perl)
#:use-module (gnu packages ncurses)) #:use-module (gnu packages ncurses))
(define-public texinfo (define-public texinfo
(package (package
(name "texinfo") (name "texinfo")
(version "4.13a") (version "5.0")
(source (source (origin
(origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append "mirror://gnu/texinfo/texinfo-"
"mirror://gnu/texinfo/texinfo-" version ".tar.xz"))
version
".tar.lzma"))
(sha256 (sha256
(base32 (base32
"1rf9ckpqwixj65bw469i634897xwlgkm5i9g2hv3avl6mv7b0a3d")))) "1p34f68h9ggfj6ckgj0p62qlj7pmz3ha3vc91kh4hr44pnwm1pla"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("ncurses" ,ncurses) ("xz" ,xz))) (inputs `(("perl" ,perl) ; yuck!
(home-page ("ncurses" ,ncurses)
"http://www.gnu.org/software/texinfo/") ("xz" ,xz)))
(synopsis (home-page "http://www.gnu.org/software/texinfo/")
"GNU Texinfo, the GNU documentation system") (synopsis "GNU Texinfo, the GNU documentation system")
(description (description
"Texinfo is the official documentation format of the GNU project. "Texinfo is the official documentation format of the GNU project.
It was invented by Richard Stallman and Bob Chassell many years It was invented by Richard Stallman and Bob Chassell many years